Skip to content

Commit 7155124

Browse files
authored
chore: fix error message in automation client (#39)
1 parent 3a03046 commit 7155124

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/clients/automation/automation.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ func (a Client) List(ctx context.Context, resourceType ResourceType) (ListRespon
191191
})
192192

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

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

0 commit comments

Comments
 (0)