-
Notifications
You must be signed in to change notification settings - Fork 114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix polarion role for "update test runs task" #1718
Conversation
The task is encountering an issue because it expects a list of objects with a path attribute, but instead, it is receiving a string. The map(attribute='path') filter is being applied to a string, which causes the error. To resolve this, ensure that xml_files.files is a list of dictionaries, each containing a path key.
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Thanks for the PR! ❤️ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#1705 fixes it, this patch is no longer required
/dnm |
Adding label Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
Build failed (check pipeline). Post https://review.rdoproject.org/zuul/buildset/63999ba2d1e7433f93c699d6b174a438 ✔️ openstack-k8s-operators-content-provider SUCCESS in 1h 38m 08s |
The task is encountering an issue because it expects a list of objects with a path attribute, but instead, it is receiving a
string.
The map(attribute='path') filter is being applied to a string, which causes the error.
To resolve this, ensure that xml_files.files is a list of dictionaries, each containing a path key.
As a pull request owner and reviewers, I checked that: