Skip to content

Commit

Permalink
Fix XMPP late response.
Browse files Browse the repository at this point in the history
BUG=

Review-Url: https://codereview.chromium.org/2838993002
Cr-Commit-Position: refs/heads/master@{#468380}
  • Loading branch information
jamiewalch authored and Commit bot committed May 1, 2017
1 parent a7b31e1 commit 38b7637
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion remoting/webapp/base/js/fallback_signal_strategy.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ remoting.FallbackSignalStrategy = function(primary,
* @private {number}
* @const
*/
this.PRIMARY_CONNECT_TIMEOUT_MS_ = 10 * 1000;
this.PRIMARY_CONNECT_TIMEOUT_MS_ = 25 * 1000;

/**
* @enum {string}
Expand Down Expand Up @@ -231,6 +231,7 @@ remoting.FallbackSignalStrategy.prototype.onPrimaryStateChanged_ =
this.updateProgress_(
this.primary_,
remoting.FallbackSignalStrategy.Progress.SUCCEEDED_LATE);
return; // Don't notify the external callback
}
break;

Expand Down

0 comments on commit 38b7637

Please sign in to comment.