From: Automerge Date: Mon, 23 Apr 2012 09:06:37 +0000 (+0000) Subject: [merge from 6.7] doUidlRequest() should not set hasActiveRequest=false when retrying... X-Git-Tag: 7.0.0.alpha3~260^2~4 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=6608a575e342c0fcd3ae29245ecd406cea0fb562;p=vaadin-framework.git [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 --- 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));