Skip to content

Commit

Permalink
load-test: fix f-string syntax
Browse files Browse the repository at this point in the history
Signed-off-by: Wesley Pettit <[email protected]>
  • Loading branch information
PettitWesley committed Jun 13, 2023
1 parent 0ff6d18 commit 2cb10d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion load_tests/load_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def run_ecs_tests():
response = client.run_task(
cluster=ecs_cluster_name,
launchType='EC2',
taskDefinition=f'{PREFIX}{OUTPUT_PLUGIN}-{throughput}-{input_logger['name']}'
taskDefinition=f'{PREFIX}{OUTPUT_PLUGIN}-{throughput}-{input_logger["name"]}'
)
names[f'{OUTPUT_PLUGIN}_{throughput}_task_arn'] = response['tasks'][0]['taskArn']

Expand Down

0 comments on commit 2cb10d8

Please sign in to comment.