diff options
author | Timothy Flynn <trflynn89@pm.me> | 2022-02-11 10:25:56 -0500 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-02-13 21:30:38 +0000 |
commit | 5c90aa357bc20c87c7001da805fcbf8317def13a (patch) | |
tree | 72a8b22ec9caa40c29fd43754b0d053d52d0a53a | |
parent | f2d8c488ecafe6ccb733b60e053e7388bf153fba (diff) | |
download | serenity-5c90aa357bc20c87c7001da805fcbf8317def13a.zip |
Base: Restart the SQL server if it crashes
There's a fair amount of VERIFY/TODO calls in LibSQL that will crash the
SQL server if we hit an unimplemented feature or some bug. Restart the
server if this happens to help with debugging / development.
-rw-r--r-- | Base/etc/SystemServer.ini | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Base/etc/SystemServer.ini b/Base/etc/SystemServer.ini index 54bb9958b3..948943bae6 100644 --- a/Base/etc/SystemServer.ini +++ b/Base/etc/SystemServer.ini @@ -142,6 +142,7 @@ Socket=/tmp/portal/sql SocketPermissions=600 Priority=low Lazy=true +KeepAlive=true User=anon [CrashDaemon] |