Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make config changes for 3.8 more visible #1155

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
12 changes: 11 additions & 1 deletion docs/source/upgrade_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,19 @@ Upgrade Notes
key_value_pair permissions.
Further information can be found in the :doc:`RBAC documentation <rbac>`.

* Additional garbage collection options are available to automatically delete old tokens.
* Additional garbage collection options are available to automatically delete old tokens.
New options include `tokens_ttl` to expire old tokens.
See :doc:`purging old data documentation <troubleshooting/purging_old_data>` for further
information.

* StackStorm’s Workflow engine can now handle shutdown events more gracefully.
Two new configurations has been added to `st2.conf` in the `[workflow_engine]` section to have more granular control.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Upgrade notes are intended to list the changes that are really required for the user to be aware of when upgrading from one st2 version to another (schema changes, renames, breaking changes, OS changes, python version, etc)

New features and enhancements like this one are usually not mentioned in detail for "Upgrade Notes".


.. code-block:: bash
# How long to wait for process (in seconds) to exit after receiving shutdown signal.
exit_still_active_check = 300
# Time interval between subsequent queries to check executions handled by WFE.
still_active_check_interval = 2

.. _ref-upgrade-notes-v3-7:

Expand Down