-
Notifications
You must be signed in to change notification settings - Fork 186
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix NatsRegistry #8281
Fix NatsRegistry #8281
Conversation
Signed-off-by: jkoberg <jkoberg@owncloud.com>
} | ||
|
||
func getAuth() (string, string) { | ||
return os.Getenv(_registryUsernameEnv), os.Getenv(_registryPasswordEnv) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not a blocker but ugly. I am aware that it only works this way :/
Quality Gate passedKudos, no new issues were introduced! 0 New issues |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nice changelog 🤣
Bugfix: Fix nats registry | ||
|
||
The nats registry would behave badly when configuring `nats-js-kv` via envvar. Reason is the way go-micro initializes. | ||
It took 5 developers to find the issue and the fix so the details cannot be shared here. Just accept that it is working now |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🙈
Signed-off-by: jkoberg <jkoberg@owncloud.com>
Fixes a rather strange issue with the natsjskv registry.
Thanks @butonic @rhafer @dragonchaser @fschade for the help in debugging this!