This is an automated email from the ASF dual-hosted git repository. rcordier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/james-project.git
commit 2de38df7c1810d1a3b789d2b56a7114b3a4aefc7 Author: Gautier DI FOLCO <[email protected]> AuthorDate: Fri Jul 17 15:07:35 2020 +0200 JAMES-3157 Fix support for bench profiles --- JenkinsfileStressTests.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/JenkinsfileStressTests.groovy b/JenkinsfileStressTests.groovy index 213e7fd..61a5bd6 100644 --- a/JenkinsfileStressTests.groovy +++ b/JenkinsfileStressTests.groovy @@ -89,8 +89,8 @@ pipeline { } } if (params.PROFILE in ["s3", "swift"]) { - sh "docker exec james_run ${jamesCliWithOptions} removedomain localhost" - sh "docker exec james_run ${jamesCliWithOptions} removedomain james.linagora.com" + sh "docker exec james_run ${jamesCliWithOptions} removedomain localhost || true" + sh "docker exec james_run ${jamesCliWithOptions} removedomain james.linagora.com || true" sh "docker exec james_run ${jamesCliWithOptions} adddomain open-paas.org" for (int n = 0; n <= 100; n++) { sh "docker exec james_run ${jamesCliWithOptions} adduser user${n}@open-paas.org secret" --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
