summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-02-11 18:17:01 +0100
committerxengineering <me@xengineering.eu>2023-02-11 18:17:01 +0100
commit05e3b3397c888807719d70af4ed3c73397d9374f (patch)
tree3aebb4ded5a6442074e53de8782fba5a5fec10a7 /main.go
parent4c36742ec8072e645f0b755cdf5e9582ac2a6887 (diff)
downloadceres-05e3b3397c888807719d70af4ed3c73397d9374f.tar
ceres-05e3b3397c888807719d70af4ed3c73397d9374f.tar.zst
ceres-05e3b3397c888807719d70af4ed3c73397d9374f.zip
Move shutdown code to main.go
This has nothing to do with the database. Because the db is now a global pointer the shutdown code can live in main.go.
Diffstat (limited to 'main.go')
-rw-r--r--main.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/main.go b/main.go
index 405ff0a..c1e0571 100644
--- a/main.go
+++ b/main.go
@@ -3,7 +3,10 @@ package main
import (
"log"
+ "os"
+ "os/signal"
"database/sql"
+ "syscall"
)
var config RuntimeConfig
@@ -13,5 +16,18 @@ func main() {
log.Printf("Started Ceres recipe server.\n")
config = GetRuntimeConfig()
db = setupDatabase()
+ provideShutdown()
runServer()
}
+
+func provideShutdown() {
+ var listener = make(chan os.Signal)
+ signal.Notify(listener, syscall.SIGTERM)
+ signal.Notify(listener, syscall.SIGINT)
+ go func() {
+ signal := <-listener
+ log.Printf("Got signal '%+v'. Shutdown is started.\n", signal)
+ dbCleanup(db)
+ os.Exit(0)
+ }()
+}