diff --git a/ccp/js/executionhistorycontroller.js b/ccp/js/executionhistorycontroller.js index 9c70943..666db40 100644 --- a/ccp/js/executionhistorycontroller.js +++ b/ccp/js/executionhistorycontroller.js @@ -8,7 +8,7 @@ class CCPExecutionHistory extends HTMLElement { #data = []; #pending = []; #filtered = []; - #socket = null; + #sockets = null; #interval = null; #searchfield = null; #fileupload = null; @@ -271,6 +271,10 @@ class CCPExecutionHistory extends HTMLElement { this.#socket = new WebSocket(this.#broadcasturl + "/executions"); this.#socket.onmessage = event=>{ const data = JSON.parse(event.data) + if(!data.jobID){ + console.log("New logs " + event.data) + return + } let exec = this.#data.filter(e=>e.id === data.jobID)[0] if(exec){ this.refreshExecution(exec.id)