Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,23 @@ Added
* Add make command to autogen JSON schema from the models of action, rule, etc. Add check
to ensure update to the models require schema to be regenerated. (new feature)
* Improved st2sensor service logging message when a sensor will not be loaded when assigned to a
different partition (@punkrokk)
different partition (@punkrokk) #4991
* Add support for a configurable connect timeout for SSH connections as requested in #4715
by adding the new configuration parameter ``ssh_connect_timeout`` to the ``ssh_runner``
group in st2.conf. (new feature) #4914

This option was requested by Harry Lee (@tclh123) and contributed by Marcel Weinberg (@winem).
* Added a FAQ for the default user/pass for the `tools/launch_dev.sh` script and print out the
default pass to screen when the script completes. (improvement) #5013

Contributed by @punkrokk

Changed
~~~~~~~
* Switch to MongoDB ``4.0`` as the default version starting with all supported OS's in st2 ``v3.3.0`` (improvement) #4972
* Switch to MongoDB ``4.0`` as the default version starting with all supported OS's in st2
``v3.3.0`` (improvement) #4972

Contributed by @punkrokk
Contributed by @punkrokk

Fixed
~~~~~
Expand Down
6 changes: 6 additions & 0 deletions dev_docs/Troubleshooting_Guide.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Troubleshooting Guide
=====================

**Q: What is the default username and password for the** ``tools/launchdev.sh`` **script?**

**A: The default creds are**:
user: testu
pass: testp

**Q: After starting st2 server using** ``tools/launchdev.sh`` **script, getting following error:**::

$ st2 action list
Expand Down
3 changes: 3 additions & 0 deletions tools/launchdev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -436,6 +436,9 @@ function st2start(){
fi
fi

# Print default creds to the screen
echo "The default creds are testu:testp"

# List screen sessions
screen -ls || exit 0
}
Expand Down