set default timeouts and clean up

This commit is contained in:
Roman Perekhod
2025-05-27 13:02:34 +02:00
committed by Jörn Friedrich Dreyer
parent 9a3fc08dd4
commit c597dfb917
40 changed files with 75 additions and 70 deletions

View File

@@ -109,7 +109,7 @@ func Server(cfg *config.Config) *cli.Command {
return err
}
gr.Add(runner.New("clientlog_svc", func() error {
gr.Add(runner.New(cfg.Service.Name+".svc", func() error {
return svc.Run()
}, func() {
svc.Close()
@@ -127,7 +127,7 @@ func Server(cfg *config.Config) *cli.Command {
return err
}
gr.Add(runner.NewGolangHttpServerRunner("clientlog_debug", debugServer))
gr.Add(runner.NewGolangHttpServerRunner(cfg.Service.Name+".debug", debugServer))
}
grResults := gr.Run(ctx)