Skip to content

Commit

Permalink
CP-39600: remove stray print call
Browse files Browse the repository at this point in the history
Signed-off-by: Mark Syms <[email protected]>
  • Loading branch information
MarkSymsCtx committed Feb 2, 2024
1 parent 1b6e452 commit 67d9b24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/lock_queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def __enter__(self):
self._queue_lock.acquire()
queue = self.load_queue()
front_pid, front_start_time = queue.pop(0)
print(f"Testing for PID {front_pid}")
debug_log(f"Testing for PID {front_pid}")
if front_pid == os.getpid():
# We are at the front, it is now our turn to wait on the action lock
# and then do our work
Expand Down

0 comments on commit 67d9b24

Please sign in to comment.