diff --git a/vars/healthExecuteCheck.groovy b/vars/healthExecuteCheck.groovy index 13d5ecf06..995da8715 100644 --- a/vars/healthExecuteCheck.groovy +++ b/vars/healthExecuteCheck.groovy @@ -1,10 +1,10 @@ import com.sap.piper.ConfigurationHelper - +import com.sap.piper.Utils import groovy.transform.Field @Field String STEP_NAME = 'healthExecuteCheck' @Field Set STEP_CONFIG_KEYS = [ - 'healthEndpoint', + 'healthEndpoint', 'testServerUrl' ] @Field Set PARAMETER_KEYS = STEP_CONFIG_KEYS @@ -22,6 +22,8 @@ void call(Map parameters = [:]) { .withMandatoryProperty('testServerUrl') .use() + new Utils().pushToSWA([step: STEP_NAME], config) + def checkUrl = config.testServerUrl if(config.healthEndpoint){ if(!checkUrl.endsWith('/'))