summaryrefslogtreecommitdiff
path: root/tests/functional/api
diff options
context:
space:
mode:
authorJohn L. Villalovos <john@sodarock.com>2022-09-22 23:27:14 -0700
committerJohn L. Villalovos <john@sodarock.com>2022-09-22 23:27:14 -0700
commitb87a2bc7cfacd3a3c4a18342c07b89356bf38d50 (patch)
tree7569cd58d926d53c98521be3dbcd424210b9beae /tests/functional/api
parent86b0e4015a258433528de0a5b063defa3eeb3e26 (diff)
downloadgitlab-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.py2
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):