Skip to content

Commit 0faccf5

Browse files
committed
Don't print spurious notifications, since they mostly pop up for canceled
jobs and spam the pytest suite, since pytest doesn't capture the log after the test is done.
1 parent 318c112 commit 0faccf5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/psij/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,6 @@ def _process_update_data(self, data: bytes) -> None:
201201
try:
202202
(job, executor) = self._jobs[job_id]
203203
except KeyError:
204-
logger.debug('Received status updated for inexistent job with id %s' % job_id)
204+
pass
205205
if job:
206206
executor._set_job_status(job, JobStatus(state))

0 commit comments

Comments
 (0)