Skip to content

Commit

Permalink
[IMP] Adjust print job priority from 60 to 40
Browse files Browse the repository at this point in the history
  • Loading branch information
ecino committed Mar 3, 2025
1 parent 7619120 commit a123300
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions partner_communication/models/communication_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -848,7 +848,7 @@ def _print_batch(self):
print_name = name[:3] + " " + (job.subject or "")
job.with_delay(
channel=_JOB_CHANNEL,
priority=60,
priority=40,
identity_key=self._name + "._print." + str(job.ids),
)._print_job_asynchronous(print_name)
else:
Expand All @@ -859,7 +859,7 @@ def _print_batch(self):
print_name = name[:3] + " " + config
jobs.with_delay(
channel=_JOB_CHANNEL,
priority=60,
priority=40,
identity_key=self._name + "._print." + str(job.ids),
)._print_job_asynchronous(print_name)
return self.download_data()
Expand Down

0 comments on commit a123300

Please sign in to comment.