summaryrefslogtreecommitdiff
path: root/gitlab
diff options
context:
space:
mode:
authorNejc Habjan <hab.nejc@gmail.com>2021-05-26 23:49:56 +0200
committerJohn Villalovos <john@sodarock.com>2021-05-29 17:48:50 -0700
commitb3d1c267cbe6885ee41b3c688d82890bb2e27316 (patch)
treeeb27a2ef4ef9ce03acfdc5764d48a36f9adedb01 /gitlab
parentfb7174e4aea0257eefb18c671285a1ad98222402 (diff)
downloadgitlab-b3d1c267cbe6885ee41b3c688d82890bb2e27316.tar.gz
fix(cli): add missing list filter for jobs
Diffstat (limited to 'gitlab')
-rw-r--r--gitlab/v4/objects/pipelines.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitlab/v4/objects/pipelines.py b/gitlab/v4/objects/pipelines.py
index 01f29b8..79b0802 100644
--- a/gitlab/v4/objects/pipelines.py
+++ b/gitlab/v4/objects/pipelines.py
@@ -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):