Skip to content

Commit

Permalink
fix(cli): add missing list filter for jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
nejch authored and JohnVillalovos committed May 30, 2021
1 parent fb7174e commit b3d1c26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gitlab/v4/objects/pipelines.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class ProjectPipelineJobManager(ListMixin, RESTManager):
_path = "/projects/%(project_id)s/pipelines/%(pipeline_id)s/jobs"
_obj_cls = ProjectPipelineJob
_from_parent_attrs = {"project_id": "project_id", "pipeline_id": "id"}
_list_filters = ("scope",)
_list_filters = ("scope", "include_retried")


class ProjectPipelineBridge(RESTObject):
Expand Down

0 comments on commit b3d1c26

Please sign in to comment.