Skip to content

Commit

Permalink
Merge pull request #128 from grafolean/fix/cache-refresh-typo
Browse files Browse the repository at this point in the history
Fix cache_refresh typo
  • Loading branch information
iegomez authored Nov 16, 2020
2 parents 3bc6508 + 6cb9662 commit 00279e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go-auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ func setCache(authOpts map[string]string) {
}

refreshExpiration := false
if refresh, ok := authOpts["cache_rfresh"]; ok && refresh == "true" {
if refresh, ok := authOpts["cache_refresh"]; ok && refresh == "true" {
refreshExpiration = true
}

Expand Down

0 comments on commit 00279e9

Please sign in to comment.