Implement graceful shutdown
This commit is contained in:
parent
4fcb1f952c
commit
913a076c52
1 changed files with 33 additions and 6 deletions
35
main.go
35
main.go
|
@ -2,6 +2,7 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"context"
|
||||||
"crypto/sha512"
|
"crypto/sha512"
|
||||||
"crypto/subtle"
|
"crypto/subtle"
|
||||||
_ "embed"
|
_ "embed"
|
||||||
|
@ -11,7 +12,9 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
"os"
|
"os"
|
||||||
|
"os/signal"
|
||||||
"strings"
|
"strings"
|
||||||
|
"syscall"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.xenrox.net/~xenrox/go-log"
|
"git.xenrox.net/~xenrox/go-log"
|
||||||
|
@ -411,11 +414,15 @@ func (br *bridge) basicAuthMiddleware(handler http.HandlerFunc) http.HandlerFunc
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (br *bridge) runCleanup() {
|
func (br *bridge) runCleanup(ctx context.Context) {
|
||||||
for {
|
for {
|
||||||
time.Sleep(br.cfg.Cache.CleanupInterval)
|
select {
|
||||||
|
case <-time.After(br.cfg.Cache.CleanupInterval):
|
||||||
br.logger.Info("Pruning cache")
|
br.logger.Info("Pruning cache")
|
||||||
br.cache.Cleanup()
|
br.cache.Cleanup()
|
||||||
|
case <-ctx.Done():
|
||||||
|
return
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -442,6 +449,9 @@ func main() {
|
||||||
logger.Errorf("Failed to parse logging level: %v", err)
|
logger.Errorf("Failed to parse logging level: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ctx, stop := signal.NotifyContext(context.Background(), syscall.SIGINT, syscall.SIGTERM)
|
||||||
|
defer stop()
|
||||||
|
|
||||||
client := &httpClient{&http.Client{Timeout: time.Second * 3}}
|
client := &httpClient{&http.Client{Timeout: time.Second * 3}}
|
||||||
|
|
||||||
c, err := cache.NewCache(cfg.Cache)
|
c, err := cache.NewCache(cfg.Cache)
|
||||||
|
@ -468,7 +478,24 @@ func main() {
|
||||||
}
|
}
|
||||||
|
|
||||||
if _, ok := c.(*cache.MemoryCache); ok {
|
if _, ok := c.(*cache.MemoryCache); ok {
|
||||||
go bridge.runCleanup()
|
go bridge.runCleanup(ctx)
|
||||||
|
}
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
err = httpServer.ListenAndServe()
|
||||||
|
if err != nil && err != http.ErrServerClosed {
|
||||||
|
logger.Fatalf("Failed to start HTTP server: %v", err)
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
|
<-ctx.Done()
|
||||||
|
stop()
|
||||||
|
|
||||||
|
httpShutdownContext, cancel := context.WithTimeout(context.Background(), 10*time.Second)
|
||||||
|
defer cancel()
|
||||||
|
|
||||||
|
err = httpServer.Shutdown(httpShutdownContext)
|
||||||
|
if err != nil {
|
||||||
|
logger.Errorf("Failed to shutdown HTTP server: %v", err)
|
||||||
}
|
}
|
||||||
logger.Fatal(httpServer.ListenAndServe())
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue