Newly tracked file
...p/streams/stream-deploy/stream-deploy.component.ts
changed.
Other files ignored by Codecov
pom.xml
has changed.
ui/package.json
has changed.
c1b9841
... +1 ...
eec8ba4
140 | 140 | value = this.streamDeployService.cleanValueProperties(value); |
|
141 | 141 | let keyShort = key; |
|
142 | 142 | if (key.startsWith(`${appType}.`)) { |
|
143 | + | ignoreProperties.push(`app.${app}.${keyShort}=${value}`); |
|
143 | 144 | keyShort = key.substring(`${appType}.`.length, key.length); |
|
144 | 145 | } |
|
145 | 146 | properties.push(`app.${app}.${keyShort}=${value}`); |
|
146 | - | ignoreProperties.push(`app.${app}.${keyShort}=${value}`); |
|
147 | 147 | }); |
|
148 | 148 | } |
|
149 | 149 | }); |
|
150 | 150 | this.properties = properties; |
|
151 | - | this.ignoreProperties = ignoreProperties; |
|
152 | - | this.ignoreProperties = Object.assign([], this.properties); |
|
151 | + | this.ignoreProperties = [ ...properties, ...ignoreProperties]; |
|
153 | 152 | config.streamDefinition = deploymentInfo; |
|
154 | 153 | return config; |
|
155 | 154 | })) |
235 | 234 | this.loggerService.error('Split line property', val); |
|
236 | 235 | } else { |
|
237 | 236 | // Workaround sensitive property: ignored property |
|
238 | - | if (arr[1] === `'******'`) { |
|
237 | + | if (arr[1] === `'******'` || arr[1] === `******`) { |
|
239 | 238 | this.loggerService.log(`Sensitive property ${arr[0]} is ignored`); |
|
240 | 239 | } else { |
|
241 | 240 | propertiesMap[arr[0]] = cleanValue(arr[1]); |
No base report to compare against.
Files | Coverage |
---|---|
ui/src | 72.71% |
Project Totals (244 files) | 72.71% |
eec8ba4
df9477d
c1b9841