Skip to content

Commit

Permalink
reduce graphical js timers on shutdown and reboot rockstor#943
Browse files Browse the repository at this point in the history
from 10 to 5 mins for reboot
from  5 to 3 mins for shutdown
  • Loading branch information
phillxnet committed Oct 11, 2015
1 parent ca65808 commit 51e2329
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ RebootView = RockstorLayoutView.extend({
this.constructor.__super__.initialize.apply(this, arguments);
this.template = window.JST.common_navbar;
this.paginationTemplate = window.JST.common_pagination;
this.timeLeft = 600;
this.timeLeft = 300;
this.isStopped=false;
},

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ ShutdownView = RockstorLayoutView.extend({
this.constructor.__super__.initialize.apply(this, arguments);
this.template = window.JST.common_navbar;
this.paginationTemplate = window.JST.common_pagination;
this.timeLeft = 300;
this.timeLeft = 180;
},

render: function() {
Expand Down

0 comments on commit 51e2329

Please sign in to comment.