From 532147a5ffc04a044f5edc8086d771e8f7c695b3 Mon Sep 17 00:00:00 2001 From: Divya Madala Date: Thu, 4 Apr 2024 11:41:23 -0700 Subject: [PATCH] Test job Signed-off-by: Divya Madala --- jenkins/opensearch/benchmark-test-endpoint.jenkinsfile | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/jenkins/opensearch/benchmark-test-endpoint.jenkinsfile b/jenkins/opensearch/benchmark-test-endpoint.jenkinsfile index ab68ef777f..e71e31f2f2 100644 --- a/jenkins/opensearch/benchmark-test-endpoint.jenkinsfile +++ b/jenkins/opensearch/benchmark-test-endpoint.jenkinsfile @@ -114,13 +114,10 @@ parameters { script { echo "CLUSTER_ENDPOINT: ${CLUSTER_ENDPOINT}" echo "security-enabled: ${SECURITY_ENABLED}" - insecure = !(params.SECURITY_ENABLED) - echo "${insecure}" - - /*runBenchmarkTestScript( + runBenchmarkTestScript( endpoint: CLUSTER_ENDPOINT, - insecure: false , + insecure: !(params.SECURITY_ENABLED) , username: USERNAME, password: PASSWORD, workload: TEST_WORKLOAD, @@ -132,7 +129,7 @@ parameters { captureNodeStat: CAPTURE_NODE_STAT, captureSegmentReplicationStat: CAPTURE_SEGMENT_REPLICATION_STAT, telemetryParams: TELEMETRY_PARAMS - )*/ + ) } } post {