Skip to content

Commit 6935627

Browse files
authored
Merge pull request #673 from RasaHQ/disable_socket
disable socket.io
2 parents b640e1b + e7c89a3 commit 6935627

File tree

5 files changed

+5
-11
lines changed

5 files changed

+5
-11
lines changed

.github/deployments/helmfile.yaml

-6
Original file line numberDiff line numberDiff line change
@@ -109,12 +109,6 @@ releases:
109109
requests:
110110
memory: {{ .Values.rasaWorker.resources.requests.memory }}
111111
cpu: {{ .Values.rasaWorker.resources.requests.cpu}}
112-
additionalChannelCredentials:
113-
socketio:
114-
user_message_evt: user_uttered
115-
bot_message_evt: bot_uttered
116-
session_persistence: true
117-
rest: {}
118112
- rabbitmq:
119113
auth:
120114
password: {{ requiredEnv "RABBITMQ_PASSWORD" }}

.github/workflows/continuous_deployment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ env:
4141
# * rasa version in requirements.txt
4242
# * rasa-sdk base image version in Dockerfile
4343
RASA_X_VERSION: "1.0.1"
44-
RASA_VERSION: "2.8.17"
44+
RASA_VERSION: "2.8.21"
4545
# Due to the issue with openssl library for Google Cloud SDK (gcloud)
4646
# (https://github.com/GoogleCloudPlatform/github-actions/issues/128)
4747
# we use 297.0.01 version

actions/actions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -779,7 +779,7 @@ def run(self, dispatcher, tracker, domain):
779779

780780

781781
class ActionTagFeedback(Action):
782-
"""Tag a conversation in Rasa X as positive or negative feedback """
782+
"""Tag a conversation in Rasa X as positive or negative feedback"""
783783

784784
def name(self):
785785
return "action_tag_feedback"

requirements-dev.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
pytablewriter
55

66
# lint/format/types
7-
black==20.8b1
8-
flake8>=3
7+
black==22.3.0
8+
flake8==3.9.2
99
pytype==2019.7.11
1010
pytest-mock~=3.5.1
1111
# for database cleanup during testing

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
rasa==2.8.17 # NB! when updating, make sure to also update:
1+
rasa==2.8.21 # NB! when updating, make sure to also update:
22
# * rasa-sdk base image in Dockerfile
33
# * RASA_VERSION and RASA_X_VERSION in .github/workflows/continuous-deployment.yml
44
-r actions/requirements-actions.txt

0 commit comments

Comments
 (0)