Why is read-only webui still locking the access to git bug? #1570
|
It's useful to have access to the UI (at least read-only) while still being able to use read-write git bugs using the CLI. But it seems that it is currently impossible? |
Replies: 1 comment 1 reply
|
Hey Yessen, I think the confusing part is that The WebUI still creates a That looks like a current architectural limitation rather than intended “read-only should block writers” behavior. The proper fix would probably need:
For now, the practical workaround is to run the read-only WebUI from a separate clone/mirror and do read-write CLI work in your normal clone, then sync between them. Relevant bits:
|
That is correct. How the locking happens is a bit blunt and could be improved. Not sure how though, it's more than just allowing concurrent edition, there is also the problem of notifying other processes of changes.