Make hash_algorithms order deterministic
hashlib.algorithms_guaranteed is a set so the order is not guaranteed. This means that the order could be different every time 'tox -e genconfig' is run. Change-Id: Iaa46604fccb382f174836fa6e248abf0bd7c3674
This commit is contained in:
parent
988069ef42
commit
3de3d71044
@ -125,11 +125,12 @@ request for a scoped token to avoid re-scoping altogether.
|
||||
"""))
|
||||
|
||||
# This attribute only exists in Python 2.7.8+ or 3.2+
|
||||
hash_algorithm_choices = getattr(hashlib, 'algorithms_guaranteed', None)
|
||||
hash_choices = getattr(hashlib, 'algorithms_guaranteed', None)
|
||||
hash_choices = sorted(hash_choices) if hash_choices else None
|
||||
hash_algorithm = cfg.StrOpt(
|
||||
'hash_algorithm',
|
||||
default='md5',
|
||||
choices=hash_algorithm_choices,
|
||||
choices=hash_choices,
|
||||
deprecated_for_removal=True,
|
||||
deprecated_reason=constants._DEPRECATE_PKI_MSG,
|
||||
help=utils.fmt("""
|
||||
|
Loading…
Reference in New Issue
Block a user