Skip to content

Commit

Permalink
Modified the loadbalancer so it now using a real serverqueue object.
Browse files Browse the repository at this point in the history
Signed-off-by: Michel <[email protected]>
  • Loading branch information
1stsetup committed Jan 18, 2014
1 parent 397e9c8 commit fa78980
Show file tree
Hide file tree
Showing 2 changed files with 193 additions and 164 deletions.
4 changes: 2 additions & 2 deletions chrome/content/progress_panel.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ exchProgressPanel.prototype = {
if (!this._document.getElementById("exchWebServiceProgress.progress.grid"+rowCount)) {
grid = this._document.createElement("exchangeProgressGrid");
grid.setAttribute("id","exchWebServiceProgress.progress.grid"+rowCount);
grid.setAttribute("serverUrl",server);
grid.setAttribute("serverUrl",jobList[server].server);
mainVBox.appendChild(grid);
}
else {
Expand Down Expand Up @@ -154,7 +154,7 @@ exchProgressPanel.prototype = {
}

if (topic == "onExchangeProgressChange") {
if ((!this.timerRunning) && (!this.timerRunning)) {
if (!this.timerRunning) {
this.timerRunning = true;
this.timer.initWithCallback(this, 200, this.timer.TYPE_REPEATING_SLACK);
}
Expand Down
Loading

0 comments on commit fa78980

Please sign in to comment.