Support starting server on background
mkorpela opened this issue · 3 comments
mkorpela commented
The init currently calls serve_forever() that prevents execution from continuing.
Init also registers signal handlers - this is only allowed in the main thread.
Thus currently it is not possible to start the server on background and continuing working on something else on the main thread.
pekkaklarck commented
Yeah, this is stupid design. Shouldn't be too hard to fix,
pekkaklarck commented
pekkaklarck commented
This ought to be now supported and 1.1 RC 1 is also out. Testing the functionality and reviewing the related documentation in the README would be highly appreciated.