Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
dont modify task run request (#347)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakekaplan authored Nov 30, 2023
1 parent 5735a49 commit 6ba701f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prefect_aws/workers/ecs_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def mask_sensitive_env_values(

def mask_api_key(task_run_request):
return mask_sensitive_env_values(
task_run_request, ["PREFECT_API_KEY"], keep_length=6
deepcopy(task_run_request), ["PREFECT_API_KEY"], keep_length=6
)


Expand Down

0 comments on commit 6ba701f

Please sign in to comment.