From c1042b848ef09c48a46ca64d26c3f4af47292775 Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Thu, 31 Dec 2020 14:00:30 -0800 Subject: [PATCH] another update_ci_routes fix old-commit-hash: 309384e2f78f41f205461829f6fe7771750ae500 --- selfdrive/test/update_ci_routes.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/selfdrive/test/update_ci_routes.py b/selfdrive/test/update_ci_routes.py index 2ff46654fa..bf35525d81 100755 --- a/selfdrive/test/update_ci_routes.py +++ b/selfdrive/test/update_ci_routes.py @@ -18,7 +18,6 @@ DEST_KEY = azureutil.get_user_token(_DATA_ACCOUNT_CI, "openpilotci") SOURCE_KEYS = [azureutil.get_user_token(account, bucket) for account, bucket in SOURCES] SERVICE = BlockBlobService(_DATA_ACCOUNT_CI, sas_token=DEST_KEY) - def sync_to_ci_public(route): print(f"Uploading {route}") key_prefix = route.replace('|', '/') @@ -33,8 +32,8 @@ def sync_to_ci_public(route): cmd = [ "azcopy", "copy", - "https://{}.blob.core.windows.net/{}/{}/?{}".format(source_account, source_bucket, key_prefix, source_key), - "https://{}.blob.core.windows.net/{}/{}/?{}".format(_DATA_ACCOUNT_CI, "openpilotci", dongle_id, DEST_KEY), + "https://{}.blob.core.windows.net/{}/{}?{}".format(source_account, source_bucket, key_prefix, source_key), + "https://{}.blob.core.windows.net/{}/{}".format(_DATA_ACCOUNT_CI, "openpilotci", dongle_id), "--recursive=true", "--overwrite=false", "--exclude-pattern=*/dcamera.hevc",