diff options
author | Christian Pointner <equinox@helsinki.at> | 2016-09-24 18:56:34 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2016-09-24 18:56:34 (GMT) |
commit | 0ed3e9fbc1ea1b69b66f0f494bd06dd8c272ebdf (patch) | |
tree | a425ab58ef998934611f7363a1e068a6375e6a3d /web-static | |
parent | 2de6beb14b764a850933040c8970dedfd78158c8 (diff) |
fixed output of websocket state command
Diffstat (limited to 'web-static')
-rw-r--r-- | web-static/socket.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web-static/socket.html b/web-static/socket.html index fa20146..466431d 100644 --- a/web-static/socket.html +++ b/web-static/socket.html @@ -38,7 +38,7 @@ <script type="text/javascript"> function State(req) { this.req = req - this.sock = new WebSocket("ws://localhost:4080/socket"); + this.sock = new WebSocket("wss://rdimport.helsinki.at/rhctl/socket"); this.sock_onmessage = function (event) { $('#statemsg').text(event.data); } |