You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After a while of clicking around on the tabs in the web app, the camera images from the robot will fail to load. Reloading the browser window will fix this.
This is actually a problem in the Chrome/Chromium browsers. The tag used to display camera images opens a long-running connection to the mjpeg_server to retrieve camera images. This connection is not closed when the img element is destroyed. The browser is limited to only making 6 simultaneous connections to each server, so after 6 img tags have been rendered, any further ones will not display the images.
The text was updated successfully, but these errors were encountered:
After a while of clicking around on the tabs in the web app, the camera images from the robot will fail to load. Reloading the browser window will fix this.
This is actually a problem in the Chrome/Chromium browsers. The tag used to display camera images opens a long-running connection to the mjpeg_server to retrieve camera images. This connection is not closed when the img element is destroyed. The browser is limited to only making 6 simultaneous connections to each server, so after 6 img tags have been rendered, any further ones will not display the images.
The text was updated successfully, but these errors were encountered: