Merge "Do not check ssh credentials when running gcertstatus"
This commit is contained in:
commit
f3da8ee95b
1 changed files with 1 additions and 1 deletions
|
@ -1514,7 +1514,7 @@ func (c *configImpl) GoogleProdCredsExist() bool {
|
|||
if googleProdCredsExistCache {
|
||||
return googleProdCredsExistCache
|
||||
}
|
||||
if _, err := exec.Command("/usr/bin/gcertstatus").Output(); err != nil {
|
||||
if _, err := exec.Command("/usr/bin/gcertstatus", "-nocheck_ssh").Output(); err != nil {
|
||||
return false
|
||||
}
|
||||
googleProdCredsExistCache = true
|
||||
|
|
Loading…
Reference in a new issue