diff --git a/src/views/app.html b/src/views/app.html index 6f4001682..d26d1770f 100644 --- a/src/views/app.html +++ b/src/views/app.html @@ -960,9 +960,6 @@

If a configuration, update, restore or backup action resulted in an error, you can retry the task.

An error occurred during the {{ app.error.installationState | taskName }} operation: {{ app.error.reason + ': ' + app.error.message }}

- - - diff --git a/src/views/app.js b/src/views/app.js index 9ae555112..faffc6507 100644 --- a/src/views/app.js +++ b/src/views/app.js @@ -1209,13 +1209,6 @@ angular.module('Application').controller('AppController', ['$scope', '$location' }); }, - stopAppTask: function (taskId) { - Client.stopTask(taskId, function (error) { - // we can ignore a call trying to cancel an already done task - if (error && error.statusCode !== 409) Client.error(error); - }); - }, - restartBusy: false, restartApp: function () { $scope.repair.restartBusy = true;