Skip to content

Commit d7cfe08

Browse files
committed
docs: clarify how to handle SIGUSR2
Fixes #1889
1 parent 6020968 commit d7cfe08

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -292,9 +292,10 @@ nodemon sends a kill signal to your application when it sees a file update. If y
292292
The following example will listen once for the `SIGUSR2` signal (used by nodemon to restart), run the clean up process and then kill itself for nodemon to continue control:
293293

294294
```js
295-
process.once('SIGUSR2', function () {
295+
// important to use `on` and not `once` as nodemon can re-send the kill signal
296+
process.on('SIGUSR2', function () {
296297
gracefulShutdown(function () {
297-
process.kill(process.pid, 'SIGUSR2');
298+
process.kill(process.pid, 'SIGTERM');
298299
});
299300
});
300301
```

faq.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -353,8 +353,10 @@ Your application will likely be running the old version code if you see that mes
353353
A common cause for this is when graceful shutdowns are doing async tasks, i.e:
354354

355355
```
356-
process.once('SIGUSR2', async () => {
356+
// ensure this is `on` and not `once`
357+
process.on('SIGUSR2', async () => {
357358
await db.disconnect()
359+
process.kill(process.pid, 'SIGTERM');
358360
})
359361
```
360362

0 commit comments

Comments
 (0)