Skip to content

Commit

Permalink
fixing tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
AnalogJ committed Jul 21, 2023
1 parent f1b7e80 commit 07d01fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/pkg/models/source_credential.go
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ func (s *SourceCredential) RefreshDynamicClientAccessToken() error {
var registrationTokenResponseBytes ClientRegistrationTokenResponse
err = json.NewDecoder(tokenResp.Body).Decode(&registrationTokenResponseBytes)
if err != nil {
return fmt.Errorf("an error occurred while parsing dynamic client token response", err)
return fmt.Errorf("an error occurred while parsing dynamic client token response: %v", err)
}

//update the source credential with the new access token
Expand Down

0 comments on commit 07d01fc

Please # to comment.