Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nathandf committed May 14, 2024
1 parent f359fb0 commit 0aca563
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/src/backend/views/PipelineLocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def post(self, request, group_id, pipeline_id):
# pipeline lock's 'acquired_at' property
if str(pipeline_lock.pipeline_run.uuid) == str(competing_runs[0].uuid):
acquired_at = timezone.now()
pipeline_lock = PipelineLocks.objects.filter(
pipeline_lock = PipelineLock.objects.filter(
uuid=pipeline_lock.uuid
).update(acquired_at=acquired_at)

Expand Down

0 comments on commit 0aca563

Please sign in to comment.