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
Logger("ibus").debug("adding ibus-daemon to late startup")
opts.start_late.insert(0, IBUS_DAEMON_COMMAND)
This cannot work since the process has daemonized and therefore changed its pid.
We could handle the daemonization ourselves and return the correct pid:
We run:
xpra/xpra/scripts/server.py
Lines 64 to 65 in 7a77df6
And we then record the pid, expecting to be able to use it later:
xpra/xpra/scripts/server.py
Lines 1087 to 1091 in 7a77df6
This cannot work since the process has daemonized and therefore changed its pid.
We could handle the daemonization ourselves and return the correct pid:
xpra/xpra/server/util.py
Lines 334 to 340 in 7a77df6
First reported in #4449 (comment)
The text was updated successfully, but these errors were encountered: