Skip to content

Commit

Permalink
Converted a queue warning into a debug message in job adapter
Browse files Browse the repository at this point in the history
This warning is printed often for users who do not define the queue in the submit script, this is a normal/allowed use case and the warning isn't appropriate
  • Loading branch information
alongd committed Jun 25, 2024
1 parent 358cc27 commit 8cafa91
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion arc/job/adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,8 @@ def write_submit_script(self) -> None:
}

if queue is None:
logger.warning(f'Queue not defined for server {self.server}. Assuming the queue name is defined in your submit.py script.')
logger.debug(f'Queue not defined for server {self.server}. '
f'Assuming the queue name is defined in your submit.py script.')
del format_params['queue']

try:
Expand Down

0 comments on commit 8cafa91

Please sign in to comment.