From 5830e58ab8e18560cd83de27592da02b69bcd5a5 Mon Sep 17 00:00:00 2001 From: Valeriy Ponomaryov Date: Tue, 16 Jun 2015 17:41:03 +0300 Subject: [PATCH] Reduce amount of tempest threads for no-share-servers jobs Using approach without handling of share servers we have bigger load for volume creation in Cinder using Generic driver. So, reduce amount of threads to avoid errors for Cinder volume creations that appear because of lack of free space. Change-Id: I738dd9837eb6f951899aef091a6aafe8a4a0945b --- contrib/ci/post_test_hook.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/contrib/ci/post_test_hook.sh b/contrib/ci/post_test_hook.sh index 7c46fe50da..aa19abff41 100755 --- a/contrib/ci/post_test_hook.sh +++ b/contrib/ci/post_test_hook.sh @@ -94,6 +94,12 @@ export MANILA_TESTS=${MANILA_TESTS:-'tempest.api.share*'} if [[ "$JOB_NAME" =~ "scenario" ]]; then echo "Set test set to scenario only" MANILA_TESTS='tempest.scenario.*share*' +elif [[ "$JOB_NAME" =~ "no-share-servers" ]]; then + # Using approach without handling of share servers we have bigger load for + # volume creation in Cinder using Generic driver. So, reduce amount of + # threads to avoid errors for Cinder volume creations that appear + # because of lack of free space. + MANILA_TEMPEST_CONCURRENCY=8 fi echo "Running tempest manila test suites"