From: Sridhar Seshasayee Date: Wed, 9 Jun 2021 06:14:11 +0000 (+0530) Subject: qa/standalone: Use osd op queue = wpq in activate_osd() X-Git-Tag: v17.1.0~1696^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F41782%2Fhead;p=ceph.git qa/standalone: Use osd op queue = wpq in activate_osd() This change is a follow-up to commit b6e9c0903d5ad9a699b675f9fa7739e9cce9a5f3 that set the scheduler to wpq in run_osd() and run_osd_filestore(). In addition, activate_osd() too has to set the scheduler type to 'wpq' in order to be consistent and avoid test failures. The above is a temporary measure until all the standalone tests are modified to run well with the mclock_scheduler. Fixes: https://tracker.ceph.com/issues/51074 Signed-off-by: Sridhar Seshasayee --- diff --git a/qa/standalone/ceph-helpers.sh b/qa/standalone/ceph-helpers.sh index 15be996901f..f0ba10f76a4 100755 --- a/qa/standalone/ceph-helpers.sh +++ b/qa/standalone/ceph-helpers.sh @@ -856,6 +856,7 @@ function activate_osd() { ceph_args+=" --osd-scrub-load-threshold=2000" ceph_args+=" --osd-data=$osd_data" ceph_args+=" --osd-journal=${osd_data}/journal" + ceph_args+=" --osd-op-queue=wpq" ceph_args+=" --chdir=" ceph_args+=$EXTRA_OPTS ceph_args+=" --run-dir=$dir"