From: Artur Signell Date: Tue, 6 May 2014 14:52:37 +0000 (+0300) Subject: Fix misleading message. Close does not always mean reconnect X-Git-Tag: 7.2.0~8^2~6 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=8fb9121280e1ec6e067c8339becbe3a479e769ce;p=vaadin-framework.git Fix misleading message. Close does not always mean reconnect Change-Id: Ic41189ee138980322204c897b58e29252dfc5cd8 --- 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; }