summaryrefslogtreecommitdiff
path: root/database.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 /database.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 'database.go')
-rw-r--r--database.go13
1 files changed, 0 insertions, 13 deletions
diff --git a/database.go b/database.go
index ea11cfa..5d9181c 100644
--- a/database.go
+++ b/database.go
@@ -7,11 +7,9 @@ import (
"path/filepath"
"io"
"os"
- "os/signal"
"os/user"
"os/exec"
"strconv"
- "syscall"
"database/sql"
_ "github.com/go-sql-driver/mysql"
@@ -41,17 +39,6 @@ func setupDatabase() *sql.DB {
migrate(db)
- // allow graceful shutdown
- var listener = make(chan os.Signal)
- signal.Notify(listener, syscall.SIGTERM)
- signal.Notify(listener, syscall.SIGINT)
- go func() {
- signal := <-listener
- log.Printf("\nGot signal '%+v'. Shutting down ...\n", signal)
- dbCleanup(db)
- os.Exit(0) // TODO this does not belong to a database - write utils file 'shutdown.go'
- }()
-
log.Printf("Connected to database: %s\n", target)
return db