summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2014-05-06 17:52:37 +0300
committerArtur Signell <artur@vaadin.com>2014-05-06 17:55:37 +0300
commit8fb9121280e1ec6e067c8339becbe3a479e769ce (patch)
treea222416e69a10f2d2208c8859f755023405dee98 /client
parent3d42856abe8e86348880261343e3dd87c1c1ce4f (diff)
downloadvaadin-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.java2
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;
}