Replies: 1 comment 3 replies
-
It shouldn't be very difficult to create the necessary isolation, but yeah, it's quite a bit of work. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
With the current setup and configuration, there can apparently only be one active user at the same time.
If multiple users try to access the UI, they e.g. get results for other user's execution because no user identification or session management do exist. Even having two tabs open at the same time makes the application stop working.
Essentially, we would need the capability to have one python kernel per user, individual snakemq queues and one unique session ID per user. Then all internal messages will need to get a the session ID assigned so that they can be routed back properly.
I really have no idea how to fix this without a major re-engineering. Maybe someone else does?
Beta Was this translation helpful? Give feedback.
All reactions