Skip to content

Commit d6226a3

Browse files
committed
test shutdown script
1 parent 9cec523 commit d6226a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/server/lib/shutdown.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ function runCleanupHandlers() {
6969
* signal, which will no longer get caught.
7070
*/
7171
function signalExit(signal) {
72-
var prog = 'grist[' + process.pid + ']';
72+
var prog = 'irelia[' + process.pid + ']';
7373
log.info("Server %s got signal %s; cleaning up (%d handlers)",
7474
prog, signal, cleanupHandlers.length);
7575
function dup() {
@@ -104,7 +104,7 @@ exports.cleanupOnSignals = cleanupOnSignals;
104104
* Run cleanup handlers and exit the process with the given exit code (0 if omitted).
105105
*/
106106
function exit(optExitCode) {
107-
var prog = 'grist[' + process.pid + ']';
107+
var prog = 'irelia[' + process.pid + ']';
108108
var code = optExitCode || 0;
109109
log.info("Server %s cleaning up", prog);
110110
return runCleanupHandlers()

0 commit comments

Comments
 (0)