From d3227eceff6adaf506c328665204fdf1f4d75105 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Mon, 7 Jan 2019 14:05:32 +0100 Subject: [PATCH] Give better oom notification title --- src/notifications.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/notifications.js b/src/notifications.js index 6fa114d34..d581bd5a1 100644 --- a/src/notifications.js +++ b/src/notifications.js @@ -141,7 +141,7 @@ function oomEvent(program, context, callback) { async.each(result, function (admin, callback) { mailer.oomEvent(program, context); - add(admin.id, program, context, '', callback); + add(admin.id, 'Process died out-of-memory', context, '', callback); }, callback); }); }