1
0
Fork 0
mirror of https://git.sr.ht/~ashkeel/strimertul synced 2024-09-20 02:00:49 +00:00

Stop db GC from not making the server start

This commit is contained in:
Ash Keel 2021-12-06 12:22:54 +01:00
parent 29e5db09b3
commit 9c1b49183c
No known key found for this signature in database
GPG key ID: BAD8D93E7314ED3E

View file

@ -172,6 +172,7 @@ func main() {
}() }()
// Run garbage collection every once in a while // Run garbage collection every once in a while
go func() {
ticker := time.NewTicker(15 * time.Minute) ticker := time.NewTicker(15 * time.Minute)
defer ticker.Stop() defer ticker.Stop()
for range ticker.C { for range ticker.C {
@ -181,6 +182,7 @@ func main() {
err = db.Client().RunValueLogGC(0.5) err = db.Client().RunValueLogGC(0.5)
} }
} }
}()
// Start HTTP server // Start HTTP server
failOnError(httpServer.Listen(), "HTTP server stopped") failOnError(httpServer.Listen(), "HTTP server stopped")