diff options
author | Daniel Wakefield <daniel.wakefield@hp.com> | 2015-03-04 14:01:55 +0000 |
---|---|---|
committer | Daniel Wakefield <daniel.wakefield@hp.com> | 2015-03-04 14:01:55 +0000 |
commit | 13780f37c3f5e5f18f10f131d1ef39c010457e87 (patch) | |
tree | 88fcf8f9b626a40bac3a74555a3afb7cbb39063a /swiftclient/utils.py | |
parent | 925c01ebfbdfb6478a3786f24a9572deae40f8f8 (diff) | |
download | python-swiftclient-13780f37c3f5e5f18f10f131d1ef39c010457e87.tar.gz |
Add improvements to MD5 validation.
With MD5Sum checking being added, a concern was brought up that It was
a change with no possibility of reverting to the old behaviour.
This change adds the flag '--ignore-checksum' to the upload subcommand
allowing the checks to be turned off.
Changed occurrences of the magic string for a null md5 to use a descriptive
constant instead.
Updated Error messages generated when validation fails. They should now be more descriptive
and not output a literal newline sequence.
Change-Id: Id1756cbb6700bb7e38f0ee0e75bc535e37f777ed
Diffstat (limited to 'swiftclient/utils.py')
-rw-r--r-- | swiftclient/utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/swiftclient/utils.py b/swiftclient/utils.py index f0fcc01..2f4ec3f 100644 --- a/swiftclient/utils.py +++ b/swiftclient/utils.py @@ -21,6 +21,7 @@ import time import six TRUE_VALUES = set(('true', '1', 'yes', 'on', 't', 'y')) +EMPTY_ETAG = 'd41d8cd98f00b204e9800998ecf8427e' def config_true_value(value): |