diff --git a/sdk/auth/oauth/oauth.go b/sdk/auth/oauth/oauth.go index a6b769405..a678360c4 100644 --- a/sdk/auth/oauth/oauth.go +++ b/sdk/auth/oauth/oauth.go @@ -187,7 +187,7 @@ func processResponse(resp *http.Response) (*Token, error) { return nil, fmt.Errorf("error unmarshaling token from response: %w", err) } - token.received = time.Now() + token.received = time.Now().Round(0) return token, nil }