mirror of
https://github.com/grassrootseconomics/cic-chain-events.git
synced 2024-11-20 06:56:45 +01:00
Mohammed Sohail
2bbc05bb45
* This is a major refactor and includes general improvements around - context cancellation - build settings - jetstream pub sub - logging - docker builds - conf loading
30 lines
624 B
Go
30 lines
624 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"os"
|
|
"os/signal"
|
|
"syscall"
|
|
"time"
|
|
)
|
|
|
|
func createSigChannel() (chan os.Signal, func()) {
|
|
signalCh := make(chan os.Signal, 1)
|
|
signal.Notify(signalCh, os.Interrupt, syscall.SIGTERM, syscall.SIGINT)
|
|
|
|
return signalCh, func() {
|
|
close(signalCh)
|
|
}
|
|
}
|
|
|
|
func startGracefulShutdown(ctx context.Context, internalServices *internalServiceContainer) {
|
|
ctx, cancel := context.WithTimeout(ctx, 5*time.Second)
|
|
defer cancel()
|
|
|
|
internalServices.pub.Close()
|
|
|
|
if err := internalServices.apiService.Shutdown(ctx); err != nil {
|
|
lo.Fatal("Could not gracefully shutdown api server", "err", err)
|
|
}
|
|
}
|