From 323f53cf56f2d683c877e943cf92403c67f3688f Mon Sep 17 00:00:00 2001 From: Tatiana Leon Date: Mon, 15 May 2023 15:02:10 +0200 Subject: [PATCH] connectcore-demo-example: update dashboard refresh timeout Increase the dashboard refresh timeout to be 15s. Uploading every 5s is too much for some platforms, ConnectCore MP15, with really high CPU load. https://onedigi.atlassian.net/browse/DEL-8508 https://onedigi.atlassian.net/browse/DEL-8509 Signed-off-by: Tatiana Leon --- connectcore-demo-example/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/connectcore-demo-example/index.html b/connectcore-demo-example/index.html index 43c40dc..d0a1447 100644 --- a/connectcore-demo-example/index.html +++ b/connectcore-demo-example/index.html @@ -814,7 +814,7 @@ Digi Demo - Dashboard // Callback executed when the page loads. document.addEventListener("DOMContentLoaded", function(event) { // Start the timer that updates device status. - var statsTimer = setInterval(refreshDevice, 5000); + var statsTimer = setInterval(refreshDevice, 15000); });