Commit 9164f98
committed
fix(sap-demo-java): correct globalNoise schema to nested sections
Keploy's GlobalNoise is typed `map[string]map[string][]string` — two
levels of nesting. The committed keploy.yml instead used flat dotted
keys under `globalNoise.global` (e.g. `header.X-Correlation-Id: []`,
`body.correlationId: []`), which parse as a single string key with a
literal dot in it. Keploy then never matched those keys against the
(header, field) / (body, field) lookups during noise suppression, so
the curated noise block was silently a no-op.
Re-nest every entry: `header.X-Correlation-Id` becomes
`header: { X-Correlation-Id: [] }`, and all the `body.*` keys move
under a single `body:` parent. The actuator/health DataSource status
comment is preserved above `status: []`.
Signed-off-by: slayerjain <shubhamkjain@outlook.com>1 parent ceceb83 commit 9164f98
1 file changed
Lines changed: 13 additions & 11 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
24 | | - | |
25 | | - | |
26 | | - | |
27 | | - | |
28 | | - | |
29 | | - | |
30 | | - | |
31 | | - | |
32 | | - | |
33 | | - | |
34 | | - | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
35 | 37 | | |
36 | 38 | | |
37 | 39 | | |
| |||
0 commit comments