📄 unkillable_spew.py

Size: 173 bytes
Path: //usr/lib/python3.9/site-packages/supervisor/tests/fixtures/unkillable_spew.py
Modified: 2024-10-23 12:12:32
import time
import signal
signal.signal(signal.SIGTERM, signal.SIG_IGN)

counter = 0

while 1:
   time.sleep(0.01)
   print("more spewage %s" % counter)
   counter += 1