Skip to content

Commit

Permalink
Changed 30s to 10s kill delay
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Nilsson committed Feb 12, 2024
1 parent b81df66 commit 14b8bd4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pilot/control/payloads/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -597,8 +597,8 @@ def wait_graceful(self, args: Any, proc: Any) -> int:
break
time.sleep(1)
if breaker:
logger.info(f'breaking -- sleep 30s before sending SIGKILL pid={proc.pid}')
time.sleep(30)
logger.info(f'breaking -- sleep 10 s before sending SIGKILL pid={proc.pid}')
time.sleep(10)
proc.kill()
break

Expand Down

0 comments on commit 14b8bd4

Please sign in to comment.