commit | 8186c39f3ab3dde456ba4b1291bc00e43feb316d | [log] [tgz] |
---|---|---|
author | Florian Weikert <fwe@google.com> | Wed Jun 05 12:53:39 2019 +0200 |
committer | Philipp Wollermann <philwo@google.com> | Thu Jun 06 16:55:57 2019 +0200 |
tree | 92ea70510d293b6f2e53b4d13b78256e90fcd938 | |
parent | 854fd85bfd131efbcd552f026405c708c9b7db79 [diff] [blame] |
Fix encoding of config hashes (#700)
diff --git a/buildkite/bazelci.py b/buildkite/bazelci.py index c717d0a..2daa793 100755 --- a/buildkite/bazelci.py +++ b/buildkite/bazelci.py
@@ -1770,7 +1770,8 @@ m = hashlib.md5() for key in sorted(cpy): - m.update("%s:%s;" % (key, cpy[key])) + value = "%s:%s;" % (key, cpy[key]) + m.update(value.encode("utf-8")) return m.digest()