From 758e4c18fc66d68110d7acc495323cd2d2316af6 Mon Sep 17 00:00:00 2001 From: jbion Date: Fri, 30 Dec 2016 02:27:52 +0100 Subject: Auto-subscribe to error channel in test page --- src/main/resources/static/test-ws.js | 1 + 1 file changed, 1 insertion(+) (limited to 'src/main/resources') diff --git a/src/main/resources/static/test-ws.js b/src/main/resources/static/test-ws.js index 662cf811..1c64349e 100644 --- a/src/main/resources/static/test-ws.js +++ b/src/main/resources/static/test-ws.js @@ -6,6 +6,7 @@ function connect() { stompClient = Stomp.over(socket); stompClient.connect({}, function (frame) { console.log('Connected: ' + frame); + subscribeTo('/user/queue/errors'); }); } -- cgit