Skip to content

Commit 8b723b1

Browse files
authored
Merge branch 'master' into build-changelog
2 parents 1062f95 + c6de93d commit 8b723b1

File tree

4 files changed

+27
-2
lines changed

4 files changed

+27
-2
lines changed

.github/workflows/continous-integration.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,8 @@ jobs:
145145
- name: Install Dependencies 📦
146146
run: |
147147
sudo apt-get -y install libpq-dev
148-
make install-full
148+
make install-full | tee .output
149+
if grep 'The lock file is not up to date' .output; then exit 1; fi
149150
make prepare-tests-ubuntu
150151
151152
- name: Test Code 🔍

changelog/5675.docs.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Update ``rasa shell`` documentation to explain how to recreate external channel session behavior.

docs/user-guide/command-line-interface.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,13 @@ To increase the logging level for debugging, run:
143143
144144
rasa shell --debug
145145
146+
.. note::
147+
In order to see the typical greetings and/or session start behavior you might see
148+
in an external channel, you will need to explicitly send ``/session_start``
149+
as the first message. Otherwise, the session start behavior will begin as described in
150+
:ref:`session_config`.
146151

147-
The full list of options for ``rasa shell`` is
152+
The full list of options for ``rasa shell`` is:
148153

149154
.. program-output:: rasa shell --help
150155

poetry.lock

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)