Skip to content

Commit

Permalink
chore: fix error message in automation client (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
warber committed Sep 27, 2023
1 parent 3a03046 commit 7155124
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/clients/automation/automation.go
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ func (a Client) List(ctx context.Context, resourceType ResourceType) (ListRespon
})

if err != nil {
return ListResponse{}, fmt.Errorf("failed to list buckets:%w", err)
return ListResponse{}, fmt.Errorf("failed to list automation resources: %w", err)
}

// if Workflow API rejected the initial request with admin permissions -> continue without
Expand Down

0 comments on commit 7155124

Please sign in to comment.