chore: change constant name to camelcase

This commit is contained in:
Juan Pablo Villafáñez
2025-03-19 10:29:01 +01:00
committed by Jörn Friedrich Dreyer
parent 8b5b3fb430
commit c0b4a5daa0
21 changed files with 23 additions and 23 deletions

View File

@@ -41,7 +41,7 @@ func RestartPostprocessing(cfg *config.Config) *cli.Command {
return configlog.ReturnFatal(parser.ParseConfig(cfg))
},
Action: func(c *cli.Context) error {
connName := generators.GenerateConnectionName(cfg.Service.Name, generators.NTYPE_BUS)
connName := generators.GenerateConnectionName(cfg.Service.Name, generators.NTypeBus)
stream, err := stream.NatsFromConfig(connName, false, stream.NatsConfig{
Endpoint: cfg.Postprocessing.Events.Endpoint,
Cluster: cfg.Postprocessing.Events.Cluster,