From 738b4e60fa59077f6d9903e6101535ebc954620f Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Sat, 15 Aug 2020 10:07:05 -0700 Subject: [PATCH] notification: we do not retry update/backup every 4 hours anymore --- src/notifications.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/notifications.js b/src/notifications.js index 84edd6311..e358f24f2 100644 --- a/src/notifications.js +++ b/src/notifications.js @@ -239,7 +239,7 @@ function boxUpdateError(eventId, errorMessage, callback) { actionForAllAdmins([], function (admin, done) { mailer.boxUpdateError(admin.email, errorMessage); - add(admin.id, eventId, 'Cloudron update failed', `Failed to update Cloudron: ${errorMessage}. Update will be retried in 4 hours`, done); + add(admin.id, eventId, 'Cloudron update failed', `Failed to update Cloudron: ${errorMessage}.`, done); }, callback); } @@ -263,7 +263,7 @@ function backupFailed(eventId, taskId, errorMessage, callback) { actionForAllAdmins([], function (admin, callback) { mailer.backupFailed(admin.email, errorMessage, `${settings.adminOrigin()}/logs.html?taskId=${taskId}`); - add(admin.id, eventId, 'Backup failed', `Backup failed: ${errorMessage}. Logs are available [here](/logs.html?taskId=${taskId}). Will be retried in 4 hours`, callback); + add(admin.id, eventId, 'Backup failed', `Backup failed: ${errorMessage}. Logs are available [here](/logs.html?taskId=${taskId}).`, callback); }, callback); }