Skip to content
New issue

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

pm2 fail to output print after sleep(10) when receveing a sigint #5947

Open
River-Shi opened this issue Feb 8, 2025 · 1 comment
Open

pm2 fail to output print after sleep(10) when receveing a sigint #5947

River-Shi opened this issue Feb 8, 2025 · 1 comment

Comments

@River-Shi
Copy link

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.

(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......'.

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.

@River-Shi
Copy link
Author

River-Shi commented Feb 8, 2025

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant