diff options
author | Krzysztof Opasiak <k.opasiak@samsung.com> | 2020-03-20 07:41:55 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-03-20 07:41:55 +0000 |
commit | 6393e81bd9541e80d163da2b6438aefd5fc2c2d8 (patch) | |
tree | 932079ff00f0ac736e47877b24053fcb83e48205 /docs | |
parent | 1ba7d4eec44aa222fb4865f964f2dbb91aa0acd2 (diff) |
Update git submodules
* Update docs/submodules/oom.git from branch 'master'
to cc75458fe01608c0350cdcaeee440b5401df8a0f
- Merge "Correct defining dicts using yaml's anchors"
- Correct defining dicts using yaml's anchors
This commit corrects previous mistake assuming that
parameter's nested content derived via "<<" operator
can be overwritten with single value, while in practice,
whole key would be change.
For practical explanation, following entry:
a: &a
b: 1
c:
d: 2
e: 3
x:
<<: *a
c:
d: 10
Would yield following content:
a:
b: 1
c:
d: 2
e: 3
x:
b: 1
c:
d: 10
And as we can see, "e" key is missing there.
This commit correct this.
Issue-ID: SDNC-1122
Signed-off-by: Konrad Bańka <k.banka@samsung.com>
Change-Id: I15dfe0219ee1d6bcde7d29821ed2650bc8698244
Diffstat (limited to 'docs')
m--------- | docs/submodules/oom.git | 0 |
1 files changed, 0 insertions, 0 deletions
diff --git a/docs/submodules/oom.git b/docs/submodules/oom.git -Subproject ec97119b7caa591f7c199c8e60f9a2fb45548a9 +Subproject cc75458fe01608c0350cdcaeee440b5401df8a0 |