Skip to content

Commit

Permalink
[BugFix] Make challenge PK string in EC2 setup (#4090)
Browse files Browse the repository at this point in the history
  • Loading branch information
gchhablani authored Aug 10, 2023
1 parent eb8479e commit bb63b11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/challenges/aws_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1500,7 +1500,7 @@ def setup_ec2(challenge):
"AWS_ACCESS_KEY_ID": aws_keys["AWS_ACCESS_KEY_ID"],
"AWS_SECRET_ACCESS_KEY": aws_keys["AWS_SECRET_ACCESS_KEY"],
"AWS_REGION": aws_keys["AWS_REGION"],
"PK": challenge_obj.pk,
"PK": str(challenge_obj.pk),
"QUEUE": challenge_obj.queue,
"ENVIRONMENT": settings.ENVIRONMENT,
}
Expand Down

0 comments on commit bb63b11

Please sign in to comment.