INNER CODE UNIT · Python
poll
yohey-w/multi-agent-shogun · scripts/dashboard-viewer.py:184
async function poll() {
try {
const mtime = await fetchMtime();
if (mtime !== lastMtime) {
lastMtime = mtime;
await render();
const d = new Date();
lastUpdated.textContent = 'Updated ' + d.toLocaleTimeString('ja-JP');
}
setStatus(true, 'Live');
} catch (e) {
setStatus(false, 'Connection error');
}
}
poll();
setInterval(poll, 1500);
</script>