From 0c350dcf6e57a96cf750acb64603d1d72f04cde3 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Wed, 6 Mar 2019 16:05:50 -0800 Subject: [PATCH] add a note --- src/taskmanager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/taskmanager.js b/src/taskmanager.js index 98121958d..5f07f8e06 100644 --- a/src/taskmanager.js +++ b/src/taskmanager.js @@ -154,7 +154,7 @@ function startAppTask(appId, callback) { debug('Apptask crashed with code %s and signal %s', code, signal); appdb.update(appId, { installationState: appdb.ISTATE_ERROR, installationProgress: 'Apptask crashed with code ' + code + ' and signal ' + signal }, NOOP_CALLBACK); eventlog.add(eventlog.ACTION_APP_TASK_CRASH, AUDIT_SOURCE, { appId: appId, crashLogFile: logFilePath }, NOOP_CALLBACK); - } else if (code === 50) { + } else if (code === 50) { // task exited cleanly but with an error eventlog.add(eventlog.ACTION_APP_TASK_CRASH, AUDIT_SOURCE, { appId: appId, crashLogFile: logFilePath }, NOOP_CALLBACK); } delete gActiveTasks[appId];