Skip to content
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 - When the password contains "$" character the login not working well. #351

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/gateclient/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ func userConfig(gateClient *GatewayClient, configLocation string) error {
// but unmarshal to an upstream oauth package, so the cached token needs to match
// https://godoc.org/golang.org/x/oauth2#Token
if yamlFile != nil {
err = yaml.UnmarshalStrict([]byte(os.ExpandEnv(string(yamlFile))), &gateClient.Config)
vitorjordao marked this conversation as resolved.
Show resolved Hide resolved
err = yaml.UnmarshalStrict([]byte(string(yamlFile)), &gateClient.Config)
if err != nil {
gateClient.ui.Error(fmt.Sprintf("Could not deserialize config file with contents: %s, failing.", yamlFile))
return err
Expand Down