bazel tidy

This commit is contained in:
miampf 2024-01-15 17:08:30 +01:00
parent 3f51297db5
commit 5bcd295921
No known key found for this signature in database
GPG key ID: 376EAC0E5307A669
81 changed files with 430 additions and 429 deletions

View file

@ -39,12 +39,12 @@ func main() {
server, err := server.New(log, handler)
if err != nil {
log.With(slog.Any("error", err)).Error("Failed to create update server")
os.Exit(1)
os.Exit(1)
}
err = server.Run(protocol, constants.UpgradeAgentSocketPath)
if err != nil {
log.With(slog.Any("error", err)).Error("Failed to start update server")
os.Exit(1)
os.Exit(1)
}
}