Fix websocket input processing
It was skipped in many cases which breaks ctrl-cing running code. Fixes #8132
This commit is contained in:
parent
949a906d5a
commit
96b0c211d1
|
@ -1515,9 +1515,11 @@ void supervisor_web_workflow_background(void *data) {
|
|||
}
|
||||
break;
|
||||
}
|
||||
websocket_background();
|
||||
break;
|
||||
}
|
||||
|
||||
// Let the websocket code run.
|
||||
websocket_background();
|
||||
|
||||
// Resume polling
|
||||
socketpool_socket_poll_resume();
|
||||
|
||||
|
|
Loading…
Reference in New Issue