This repository was archived by the owner on Apr 22, 2024. It is now read-only.
This repository was archived by the owner on Apr 22, 2024. It is now read-only.
ctrl+c is not stopping in foreground (aka interactive mode) #1184
Open
Description
Help says that ctrl+c will stop when in foreground mode. This is not true, right now.
First, foregorund IMO is the same as interactive mode. Since we have a very nice support for python logging, we don' t need 3 modes.
- foreground / interactive = -f
- daemon mode = default (without -f)
In the first mode, ctrl+d (exit) will stop kytosd. We need to add a handler to ctrl+c too.