Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

Commit

Permalink
Add missing error print
Browse files Browse the repository at this point in the history
  • Loading branch information
izaaklauer committed Sep 1, 2021
1 parent 285a188 commit 35ebdbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin/aws/ecs/platform.go
Original file line number Diff line number Diff line change
Expand Up @@ -1998,7 +1998,7 @@ func (p *Platform) resourceTaskRoleCreate(
RoleName: &roleName,
})
if err != nil {
return status.Errorf(codes.Internal, "failed to attach policy (ARN: %q) to role (name: %q)", policyArn, roleName, err)
return status.Errorf(codes.Internal, "failed to attach policy (ARN: %q) to role (name: %q): %s", policyArn, roleName, err)
}
}
}
Expand Down

0 comments on commit 35ebdbe

Please sign in to comment.