Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
bypass the stuck domain
  • Loading branch information
usmannasir committed Sep 30, 2020
1 parent 2e2563d commit 536eb1d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions plogical/IncScheduler.py
Expand Up @@ -433,7 +433,7 @@ def startNormalBackups(type):
if oldJobContinue and not doit:
if domain == stuckDomain:
doit = 1
pass
continue
else:
continue

Expand Down Expand Up @@ -542,7 +542,7 @@ def startNormalBackups(type):
if oldJobContinue and not doit:
if domain == stuckDomain:
doit = 1
pass
continue
else:
continue

Expand Down
3 changes: 2 additions & 1 deletion static/backup/backup.js
Expand Up @@ -1585,6 +1585,7 @@ app.controller('scheduleBackup', function ($scope, $http, $window) {
$scope.fetchJobs = function () {

$scope.cyberPanelLoading = false;
$scope.jobsHidden = true;

var config = {
headers: {
Expand Down Expand Up @@ -1642,7 +1643,7 @@ app.controller('scheduleBackup', function ($scope, $http, $window) {
}
};
var data = {
selectedAccount: $scope.selectedAccount,
selectedAccount: $scope.selectedAccountAdd,
name: $scope.name,
backupFrequency: $scope.backupFrequency
};
Expand Down

0 comments on commit 536eb1d

Please sign in to comment.