File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
services/static-webserver/client/source/class/osparc/desktop Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -421,14 +421,15 @@ qx.Class.define("osparc.desktop.StudyEditor", {
421421 // callback for events
422422 if ( ! socket . slotExists ( "serviceStatus" ) ) {
423423 socket . on ( "serviceStatus" , data => {
424- if ( this . getStudy ( ) . getUuid ( ) !== data [ "project_id" ] ) {
425- return ;
426- }
427424 const nodeId = data [ "service_uuid" ] ;
428425 const workbench = this . getStudy ( ) . getWorkbench ( ) ;
429426 const node = workbench . getNode ( nodeId ) ;
430- if ( node && node . getIframeHandler ( ) ) {
431- node . getIframeHandler ( ) . onNodeState ( data ) ;
427+ if ( node ) {
428+ if ( node . getIframeHandler ( ) ) {
429+ node . getIframeHandler ( ) . onNodeState ( data ) ;
430+ }
431+ } else if ( osparc . data . Permissions . getInstance ( ) . isTester ( ) ) {
432+ console . log ( "Ignored ws 'progress' msg" , data ) ;
432433 }
433434 } , this ) ;
434435 }
You can’t perform that action at this time.
0 commit comments