Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Unified Diff: bin/au_test_harness/dev_server_wrapper.py

Issue 6698017: Remove test keys from images we test with in the test harness. (Closed) Base URL: http://git.chromium.org/git/crosutils.git@master
Patch Set: Refactored public key logic into its own module Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: bin/au_test_harness/dev_server_wrapper.py
diff --git a/bin/au_test_harness/dev_server_wrapper.py b/bin/au_test_harness/dev_server_wrapper.py
index 6af89d6a3edda4711a378aeb5c9554a69c4fd80b..3ddc1b8a34bb490030cbb24272ac1fd94ed1efec 100644
--- a/bin/au_test_harness/dev_server_wrapper.py
+++ b/bin/au_test_harness/dev_server_wrapper.py
@@ -13,7 +13,7 @@ import cros_build_lib as cros_lib
def GenerateUpdateId(target, src, key):
"""Returns a simple representation id of target and src paths."""
update_id = target
- if src: update_id = '->'.join([update_id, src])
+ if src: update_id = '->'.join([src, update_id])
if key: update_id = '+'.join([update_id, key])
return update_id

Powered by Google App Engine
This is Rietveld 408576698