Added CTRL+C check

This commit is contained in:
Simonmicro 2021-12-09 17:45:24 +01:00
parent 1e6a55d06a
commit 28faacdf1d
No known key found for this signature in database
GPG key ID: 033A4D4CE4E063D6

View file

@ -80,6 +80,8 @@ def start_kms():
except Exception:
# In case of any error - just shut down
pass
except KeyboardInterrupt:
pass
if enableSQLITE:
if None != sqlite_process: sqlite_process.terminate()