diff options
| author | John L. Villalovos <john@sodarock.com> | 2022-09-22 23:27:14 -0700 |
|---|---|---|
| committer | John L. Villalovos <john@sodarock.com> | 2022-09-22 23:27:14 -0700 |
| commit | b87a2bc7cfacd3a3c4a18342c07b89356bf38d50 (patch) | |
| tree | 7569cd58d926d53c98521be3dbcd424210b9beae /tests/functional/api | |
| parent | 86b0e4015a258433528de0a5b063defa3eeb3e26 (diff) | |
| download | gitlab-b87a2bc7cfacd3a3c4a18342c07b89356bf38d50.tar.gz | |
chore: bump GitLab docker image to 15.4.0-ee.0
* Use `settings.delayed_group_deletion=False` as that is the
recommended method to turn off the delayed group deletion now.
* Change test to look for `default` as `pages` is not mentioned in
the docs[1]
[1] https://docs.gitlab.com/ee/api/sidekiq_metrics.html#get-the-current-queue-metrics
Diffstat (limited to 'tests/functional/api')
| -rw-r--r-- | tests/functional/api/test_gitlab.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/api/test_gitlab.py b/tests/functional/api/test_gitlab.py index f2bdf50..d81f4d8 100644 --- a/tests/functional/api/test_gitlab.py +++ b/tests/functional/api/test_gitlab.py @@ -59,7 +59,7 @@ def test_lint(gl): def test_sidekiq_queue_metrics(gl): out = gl.sidekiq.queue_metrics() assert isinstance(out, dict) - assert "pages" in out["queues"] + assert "default" in out["queues"] def test_sidekiq_process_metrics(gl): |
