Ignore empty events in mon

This commit is contained in:
Vitaliy Filippov
2022-01-08 11:41:00 +03:00
parent 4a9f001d9e
commit 8f64fc61e7
+1 -1
View File
@@ -590,7 +590,7 @@ class Mon
console.log('Revision '+data.result.header.revision+' events: ');
}
this.etcd_watch_revision = BigInt(data.result.header.revision)+BigInt(1);
for (const e of data.result.events)
for (const e of data.result.events||[])
{
this.parse_kv(e.kv);
const key = e.kv.key.substr(this.etcd_prefix.length);