diff options
author | Artur Signell <artur@vaadin.com> | 2014-05-06 17:52:37 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2014-05-06 17:55:37 +0300 |
commit | 8fb9121280e1ec6e067c8339becbe3a479e769ce (patch) | |
tree | a222416e69a10f2d2208c8859f755023405dee98 /client | |
parent | 3d42856abe8e86348880261343e3dd87c1c1ce4f (diff) | |
download | vaadin-framework-8fb9121280e1ec6e067c8339becbe3a479e769ce.tar.gz vaadin-framework-8fb9121280e1ec6e067c8339becbe3a479e769ce.zip |
Fix misleading message. Close does not always mean reconnect
Change-Id: Ic41189ee138980322204c897b58e29252dfc5cd8
Diffstat (limited to 'client')
-rw-r--r-- | client/src/com/vaadin/client/communication/AtmospherePushConnection.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/com/vaadin/client/communication/AtmospherePushConnection.java b/client/src/com/vaadin/client/communication/AtmospherePushConnection.java index f70f879b3a..48e17cde05 100644 --- a/client/src/com/vaadin/client/communication/AtmospherePushConnection.java +++ b/client/src/com/vaadin/client/communication/AtmospherePushConnection.java @@ -340,7 +340,7 @@ public class AtmospherePushConnection implements PushConnection { } protected void onClose(AtmosphereResponse response) { - VConsole.log("Push connection closed, awaiting reconnection"); + VConsole.log("Push connection closed"); state = State.CONNECT_PENDING; } |