diff options
author | Automerge <automerge@vaadin.com> | 2012-04-23 09:06:37 +0000 |
---|---|---|
committer | Automerge <automerge@vaadin.com> | 2012-04-23 09:06:37 +0000 |
commit | 6608a575e342c0fcd3ae29245ecd406cea0fb562 (patch) | |
tree | 76d7930dac1b623606401107035f21599d01ced7 | |
parent | 96267f034e67b0c301e858342271e484998db7ed (diff) | |
download | vaadin-framework-6608a575e342c0fcd3ae29245ecd406cea0fb562.tar.gz vaadin-framework-6608a575e342c0fcd3ae29245ecd406cea0fb562.zip |
[merge from 6.7] doUidlRequest() should not set hasActiveRequest=false when retrying a request that returned a 503
svn changeset:23609/svn branch:6.8
-rw-r--r-- | src/com/vaadin/terminal/gwt/client/ApplicationConnection.java | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java b/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java index 82971860b5..4c6fc8462b 100644 --- a/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java +++ b/src/com/vaadin/terminal/gwt/client/ApplicationConnection.java @@ -535,10 +535,6 @@ public class ApplicationConnection { (new Timer() { @Override public void run() { - // TODO why? Here used to be - // "activeRequests--;" - // but can't see why exactly - hasActiveRequest = false; doUidlRequest(uri, payload, synchronous); } }).schedule(Integer.parseInt(delay)); |