We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b67c391 commit e49957bCopy full SHA for e49957b
auth_providers/auth_core.go
@@ -503,8 +503,8 @@ func (c *CommandAuthConfig) Authenticate() error {
503
c.HttpClient.Timeout = time.Duration(c.HttpClientTimeout) * time.Second
504
505
cResp, cErr := c.HttpClient.Do(req)
506
- curlStr, cErr := RequestToCurl(req)
507
- if cErr == nil {
+ curlStr, curlErr := RequestToCurl(req)
+ if curlErr == nil {
508
log.Printf("[TRACE] curl command: %s", curlStr)
509
}
510
0 commit comments