Merge branch 'dev' of github.com:emqtt/emqtt into dev
This commit is contained in:
commit
0476b6874a
|
@ -7,6 +7,8 @@ emqttd ChangeLog
|
||||||
|
|
||||||
Bugfix: issue #138 - when client disconnected normally, broker will not publish disconnected $SYS message
|
Bugfix: issue #138 - when client disconnected normally, broker will not publish disconnected $SYS message
|
||||||
|
|
||||||
|
Bugfix: fix websocket url in emqttd/priv/www/websocket.html
|
||||||
|
|
||||||
Improve: issue #136 - $SYS topics result should not include $SYS messages
|
Improve: issue #136 - $SYS topics result should not include $SYS messages
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
return document.getElementById(id);
|
return document.getElementById(id);
|
||||||
}
|
}
|
||||||
function go() {
|
function go() {
|
||||||
ws = new WebSocket("ws://" + location.host + "/mqtt/wsocket");
|
ws = new WebSocket("ws://" + location.host + "/mqtt");
|
||||||
ws.onopen = function () {
|
ws.onopen = function () {
|
||||||
$('connstate').innerHTML = 'CONNECTED';
|
$('connstate').innerHTML = 'CONNECTED';
|
||||||
}
|
}
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 300bb74452764ac27c261ae000495791397b2a28
|
|
Loading…
Reference in New Issue