| After upgrading from 1.23 to latest 2.0 version of Influx DB the custom tags I was setting using jenkinsEnvParameterTag are being ignored and no longer being published. I am using the pipeline like below:
influxDbPublisher([
selectedTarget: 'influxdb_maint',
customPrefix: '',
customProjectName: '_',
replaceDashWithUnderscore: true,
jenkinsEnvParameterTag: "key1=value1\nkey2=value2\nkey3=value3"
])
This works on 1.23 but not in 2.0. I have downgraded the plugin in order to work again. I am not sure why it's happening, but I know some refactoring's were done in the code that parses jenkinsEnvParameterTag. |