Skip to content

Commit a3c17e9

Browse files
wiwskiCopilot
andcommitted
fix: typo in euphrosyne_backend_url
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent e3e04b8 commit a3c17e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

data_lifecycle/hooks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ def post_lifecycle_operation_callback(
2929
Posts lifecycle operation result to the Euphrosyne backend with retries.
3030
"""
3131
try:
32-
euphroyne_backend_url = os.environ["EUPHROSYNE_BACKEND_URL"]
32+
euphrosyne_backend_url = os.environ["EUPHROSYNE_BACKEND_URL"]
3333
except KeyError:
3434
logger.error("EUPHROSYNE_BACKEND_URL environment variable is not set")
3535
return False
3636

3737
token = generate_token_for_euphrosyne_backend()
3838
headers = {"Authorization": f"Bearer {token}"}
39-
callback_url = f"{euphroyne_backend_url}{LIFECYCLE_CALLBACK_PATH}"
39+
callback_url = f"{euphrosyne_backend_url}{LIFECYCLE_CALLBACK_PATH}"
4040

4141
operation_id = operation.operation_id
4242
project_slug = operation.project_slug

0 commit comments

Comments
 (0)