Skip to content

Commit

Permalink
Update core/services/pipeline/internal/eautils/eautils.go
Browse files Browse the repository at this point in the history
Co-authored-by: Jordan Krage <[email protected]>
  • Loading branch information
brunotm and jmank88 committed Jan 19, 2024
1 parent 635a696 commit 0c3894d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/services/pipeline/internal/eautils/eautils.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ type AdapterStatus struct {
ProviderStatusCode *int `json:"providerStatusCode"`
}

func BestEffortExtractEAStatus(responseBytes []byte) (int, bool) {
func BestEffortExtractEAStatus(responseBytes []byte) (code int, ok bool) {
var status AdapterStatus
err := json.Unmarshal(responseBytes, &status)
if err != nil {
Expand Down

0 comments on commit 0c3894d

Please sign in to comment.