We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import signal import time import sys def signal_handler(signum, frame): time.sleep(10) print('\nSignal received, Exit......') sys.exit(0) signal.signal(signal.SIGINT, signal_handler) count = 0 try: while True: print(f'count: {count}') count += 1 time.sleep(1) except KeyboardInterrupt: print('\nProgram Exit')
When I press Ctrl + C in the terminal, the message Signal received, Exit...... appears after 10 seconds.
Signal received, Exit......
(ccxt) (base) ➜ zmqmsg python test_pm2_sig.py count: 0 count: 1 count: 2 ^C Signal received, Exit......
However, when I start the program with pm2 and stop it using pm2 stop, it does not print '\nSignal received, Exit......'.
pm2 stop
'\nSignal received, Exit......'
21|pm2_sig | count: 0 21|pm2_sig | count: 1 21|pm2_sig | count: 2 21|pm2_sig | count: 3 21|pm2_sig | count: 4 21|pm2_sig | count: 5 21|pm2_sig | count: 6 21|pm2_sig | count: 7 21|pm2_sig | count: 8 21|pm2_sig | count: 9 21|pm2_sig | count: 10 21|pm2_sig | count: 11 21|pm2_sig | count: 12
I am running on Linux Ubuntu which supports sigint.
The text was updated successfully, but these errors were encountered:
import time count = 0 try: while True: print(f'count: {count}') count += 1 time.sleep(1) except KeyboardInterrupt: print('\nKeyboardInterrupt') finally: time.sleep(10) print('\nProgram Exit')
After adding time.sleep(10), the print('\nProgram Exit') statement is not executed when using pm2 stop
print('\nProgram Exit')
Sorry, something went wrong.
No branches or pull requests
When I press Ctrl + C in the terminal, the message
Signal received, Exit......
appears after 10 seconds.However, when I start the program with pm2 and stop it using
pm2 stop
, it does not print'\nSignal received, Exit......'
.I am running on Linux Ubuntu which supports sigint.
The text was updated successfully, but these errors were encountered: