Skip to content
This repository was archived by the owner on Jun 19, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion aqueductcore/backend/services/extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,10 @@ async def execute(

my_env = {key: str(val) for key, val in (extension.constants or {}).items()}
my_env.update(params)
my_env["api_token"] = user_info.token
my_env["aqueduct_url"] = extension.aqueduct_url
if extension.aqueduct_api_token is not None:
my_env["API_TOKEN"] = extension.aqueduct_api_token
my_env["api_token"] = extension.aqueduct_api_token

cwd = Path.home()
if extension.manifest_file:
Expand Down
Loading