1
0
Fork 0
mirror of https://github.com/eosswedenorg/antelope-api-healthcheck synced 2026-06-18 05:00:03 +02:00

cmd/antelope-api-healtcheck/main.go: Minor fix.

This commit is contained in:
Henrik Hautakoski 2023-02-02 18:18:49 +01:00
parent 755438408b
commit fba9402584
No known key found for this signature in database
GPG key ID: 217490840C18A5D9

View file

@ -189,8 +189,7 @@ func main() {
go signalEventLoop()
// Run server
err := srv.Run()
if err != nil {
if err := srv.Run(); err != nil {
logger.Error("Server failed to shutdown", "message", err)
}
}