Chat does not function when using shared sessions
Problem
When sessions are put in sharing mode, a chat widget is visible. Starting in 1.14.0 this chat widget may not function properly. No participants are visible and attempts to enter chat messages fail.
The following error logs will be seen in the admin console
Traceback (most recent call last):
File "tornado/websocket.py", line 546, in _run_callback
File "share_server.py", line 183, in open
File "tornado/gen.py", line 239, in wrapper
File "tornado/concurrent.py", line 658, in future_add_done_callback
File "tornado/stack_context.py", line 300, in null_wrapper
File "tornado/gen.py", line 232, in final_callback
File "tornado/gen.py", line 326, in wrapper
File "share_server.py", line 136, in listen
File "tornadoredis/client.py", line 333, in connect
File "tornadoredis/connection.py", line 74, in connect
File "tornado/iostream.py", line 1222, in __init__
TypeError: __init__() got an unexpected keyword argument 'io_loop'
Solution
This issue can be corrected by updating the deployment to use the kasmweb/share:1.14.0-alpine
image.
Please use the following steps on your Kasm server, (or the WebApp role if using multi-server) in your ecosystem to receive the share server fix.
Open a terminal on the WebApp server.
Open the
docker-compose.yaml
file in an editor.sudo nano /opt/kasm/current/docker/docker-compose.yaml
In the
kams_share
section, adjust the tag for the share container to1.14.0-alpine
in the image section and save the file:image: "kasmweb/share:1.14.0-alpine"
It should look similar to the following.
Stop the Kasm Services.
sudo /opt/kasm/bin/stop
Remove the existing
kasm_share
container:sudo docker rm -f kasm_share
Start the services.
sudo /opt/kasm/bin/start
Create a new shared session and verify the chat widget functions.
Impacted Versions:
1.14.0
Resolved Versions:
None