1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: Make the package reproducible
Author: Chris Lamb <[email protected]>
Bug-Debian: https://bugs.debian.org/1002388
Forwarded: https://review.opendev.org/c/openstack/mistral/ /823106
Last-Update: 2021-12-28
Index: mistral/mistral/config.py
===================================================================
--- mistral.orig/mistral/config.py
mistral/mistral/config.py
@@ -501,7 501,7 @@ execution_expiration_policy_opts = [
default=[],
help='The states that the expiration policy will filter '
'out and will not delete.'
- 'Valid values are, [{}]'.format(states.TERMINAL_STATES)
'Valid values are, [{}]'.format(sorted(states.TERMINAL_STATES))
)
]
|