From 8fb9121280e1ec6e067c8339becbe3a479e769ce Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Tue, 6 May 2014 17:52:37 +0300 Subject: [PATCH] Fix misleading message. Close does not always mean reconnect Change-Id: Ic41189ee138980322204c897b58e29252dfc5cd8 --- .../vaadin/client/communication/AtmospherePushConnection.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.5