diff options
| author | Nejc Habjan <hab.nejc@gmail.com> | 2021-05-26 23:49:56 +0200 |
|---|---|---|
| committer | John Villalovos <john@sodarock.com> | 2021-05-29 17:48:50 -0700 |
| commit | b3d1c267cbe6885ee41b3c688d82890bb2e27316 (patch) | |
| tree | eb27a2ef4ef9ce03acfdc5764d48a36f9adedb01 /gitlab | |
| parent | fb7174e4aea0257eefb18c671285a1ad98222402 (diff) | |
| download | gitlab-b3d1c267cbe6885ee41b3c688d82890bb2e27316.tar.gz | |
fix(cli): add missing list filter for jobs
Diffstat (limited to 'gitlab')
| -rw-r--r-- | gitlab/v4/objects/pipelines.py | 2 |
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): |
