Skip to content

Commit

Permalink
fix: Do not set priority to None
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafiot committed Jan 14, 2024
1 parent 0f0757e commit 60c8d7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/background_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def _retry_failed_enqueue(self) -> None:
rendered_hostname_only=query.get('rendered_hostname_only', True),
# force=query.get('force', False),
# recapture_interval=query.get('recapture_interval', 300),
priority=query.get('priority', None),
priority=query.get('priority', 0),
uuid=uuid
)
if new_uuid != uuid:
Expand Down

0 comments on commit 60c8d7e

Please sign in to comment.