fix: add missing error handling

This commit is contained in:
Michael Barz
2024-09-23 16:39:30 +02:00
parent 6cf7841f4c
commit 0ce0ac5af7

View File

@@ -57,6 +57,9 @@ func Server(cfg *config.Config) *cli.Command {
pool.WithRegistry(registry.GetRegistry()),
pool.WithTracerProvider(traceProvider),
)
if err != nil {
return err
}
appUrls, err := helpers.GetAppURLs(cfg, logger)
if err != nil {