Skip to content
This repository was archived by the owner on Jun 19, 2025. It is now read-only.

Commit 30fcf4a

Browse files
assign value of token to my_env
1 parent 8e810f4 commit 30fcf4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aqueductcore/backend/services/extensions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ async def execute(
124124
params_json = typed_params.model_dump_json()
125125

126126
my_env = {key: str(val) for key, val in (extension.constants or {}).items()}
127-
my_env.update({"token": user_info.token})
128127
my_env.update(params)
128+
my_env["token"] = user_info.token
129129
my_env["aqueduct_url"] = extension.aqueduct_url
130130
if extension.aqueduct_api_token is not None:
131131
my_env["API_TOKEN"] = extension.aqueduct_api_token

0 commit comments

Comments
 (0)