1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-01-30 05:59:39 +02:00

cloudFoundryDeploy: fix naming of Influx step (#450)

* fix naming Influx

* fix test for influx name change
This commit is contained in:
sbmaier 2019-01-18 15:33:36 +01:00 committed by Christopher Fenner
parent f6647d9ce5
commit 423c9f52ba
2 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ class CloudFoundryDeployTest extends BasePiperTest {
@Before @Before
void init() { void init() {
helper.registerAllowedMethod('writeInflux', [Map.class], {m -> helper.registerAllowedMethod('influxWriteData', [Map.class], {m ->
writeInfluxMap = m writeInfluxMap = m
}) })
} }

View File

@ -264,5 +264,5 @@ private void reportToInflux(script, config, deploySuccess, JenkinsUtils jenkinsU
cfOrg: config.cloudFoundry.org, cfOrg: config.cloudFoundry.org,
cfSpace: config.cloudFoundry.space, cfSpace: config.cloudFoundry.space,
]] ]]
writeInflux script: script, customData: [:], customDataTags: [:], customDataMap: deploymentData, customDataMapTags: deploymentDataTags influxWriteData script: script, customData: [:], customDataTags: [:], customDataMap: deploymentData, customDataMapTags: deploymentDataTags
} }