Skip to content

Commit

Permalink
don't log processes that don't exist
Browse files Browse the repository at this point in the history
  • Loading branch information
weaverba137 committed Aug 20, 2024
1 parent 74ba799 commit 168944f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/desitransfer/tucson.py
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ def main():
while any([v[0] is not None for v in proc_pool.values()]):
for proc_key in proc_pool:
proc, LOG, d = proc_pool[proc_key]
if options.test:
if options.test and proc is not None:
log.debug("%s: %s -> %s", d, ' '.join(proc), LOG)
else:
if proc is None:
Expand Down

0 comments on commit 168944f

Please sign in to comment.