summaryrefslogtreecommitdiffstats
path: root/test/monitoring/monitor.js
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2017-11-12 00:56:17 +0100
committerJosé Bollo <jose.bollo@iot.bzh>2017-11-12 00:56:17 +0100
commitb6a483aab99a4bf32d7c04b159de7fcb96a54416 (patch)
treefc2833dbade245359258848168f1826c010ccdc0 /test/monitoring/monitor.js
parent760f61ba4523d5c3461a0c30bbda78c84ab80103 (diff)
monitoring: Set default token to HELLO
Change-Id: I3c158598da70089b9646233c632f14f62f1baa15 Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'test/monitoring/monitor.js')
-rw-r--r--test/monitoring/monitor.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/monitoring/monitor.js b/test/monitoring/monitor.js
index 5b9dc0ea..3c64ab33 100644
--- a/test/monitoring/monitor.js
+++ b/test/monitoring/monitor.js
@@ -131,7 +131,7 @@ function init() {
at("param-host").value = document.location.hostname;
at("param-port").value = document.location.port;
var args = new URLSearchParams(document.location.search.substring(1));
- at("param-token").value = args.get("x-afb-token") || args.get("token") || "hello";
+ at("param-token").value = args.get("x-afb-token") || args.get("token") || "HELLO";
document.onbeforeunload = on_disconnect;