From 3b169b81cf68ce1608d68c543485533f09fc7e79 Mon Sep 17 00:00:00 2001 From: Matthew J Perez Date: Wed, 29 Jan 2025 14:43:13 -0500 Subject: [PATCH] change api key --- canary/canary_ota.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/canary/canary_ota.py b/canary/canary_ota.py index be66ebd5e..e2f68d30d 100644 --- a/canary/canary_ota.py +++ b/canary/canary_ota.py @@ -25,8 +25,8 @@ async def connect(api_key: str, api_key_id: str, num_attempts: int) -> ViamClien time.sleep(0.5) async def main(): - api_key = os.environ["ESP32_CANARY_API_KEY"] - api_key_id = os.environ["ESP32_CANARY_API_KEY_ID"] + api_key = os.environ["ESP32_CANARY_API_KEY_2"] + api_key_id = os.environ["ESP32_CANARY_API_KEY_ID_2"] part_id = os.environ["ESP32_CANARY_ROBOT_PART_ID"] tag_name = os.environ["ESP32_CANARY_OTA_VERSION_TAG"] bucket_url = os.environ["GCP_BUCKET_URL"]