From 6be836dbbf801181941cef86b036ba586c3a715b Mon Sep 17 00:00:00 2001 From: Tim Taylor Date: Thu, 6 Dec 2018 11:25:57 -0500 Subject: [PATCH] Remove verbose output flag when altering user role --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index af2f3447..7fbaf8e5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -47,7 +47,7 @@ pipeline { env.podName = sh returnStdout: true, script: 'oc get pod -l name=${svcname} -o jsonpath="{.items[*].metadata.name}"' env.namespace = sh returnStdout: true, script: 'oc get pod -l name=${svcname} -o jsonpath="{.items[*].metadata.namespace}"' } - openshiftExec namespace: "${namespace}", pod: "${podName}", container: 'postgresql', verbose: "true", command: [ "/bin/sh", "-i", "-c", "psql -h 127.0.0.1 -q -c 'ALTER ROLE railstest WITH SUPERUSER'" ] + openshiftExec namespace: "${namespace}", pod: "${podName}", container: 'postgresql', command: [ "/bin/sh", "-i", "-c", "psql -h 127.0.0.1 -q -c 'ALTER ROLE railstest WITH SUPERUSER'" ] } echo "Creating schema..."