You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@zeppelin.apache.org by "Prabhjyot Singh (JIRA)" <ji...@apache.org> on 2015/08/21 08:01:46 UTC

[jira] [Created] (ZEPPELIN-247) UI assumes WebSocket connection state as disconnected

Prabhjyot Singh created ZEPPELIN-247:
----------------------------------------

             Summary: UI assumes WebSocket connection state as disconnected
                 Key: ZEPPELIN-247
                 URL: https://issues.apache.org/jira/browse/ZEPPELIN-247
             Project: Zeppelin
          Issue Type: Bug
          Components: GUI
            Reporter: Prabhjyot Singh
            Assignee: Prabhjyot Singh


UI (navbar.controller.js) assumes WebSocket connection as disconnected.
It should get the state from WebSocketService.


{code}
var vm = this;
vm.notes = notebookListDataFactory;
vm.connected = false
vm.websocketMsgSrv = websocketMsgSrv;
{code}

where as it should be something like 

{code}
vm.connected = websocketMsgSrv.isConnected();
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)