From a4681bc7f77530cd73fc510d641c51fbb2855f2e Mon Sep 17 00:00:00 2001 From: kegsay Date: Thu, 17 Feb 2022 10:59:44 +0000 Subject: [PATCH] Set 'complement' as the shared secret for CI (#2194) --- cmd/generate-config/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/generate-config/main.go b/cmd/generate-config/main.go index 60729672e..f87665fbe 100644 --- a/cmd/generate-config/main.go +++ b/cmd/generate-config/main.go @@ -91,6 +91,7 @@ func main() { cfg.Logging[0].Type = "std" cfg.UserAPI.BCryptCost = bcrypt.MinCost cfg.Global.JetStream.InMemory = true + cfg.ClientAPI.RegistrationSharedSecret = "complement" } j, err := yaml.Marshal(cfg)