Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[configdb] fix bug of leaving unwanted columns in a hash (sonic-net#23)
Current implementation doesn't remove unwanted columes with set_entry like below. >>> set_entry('table', 'key', {'key1': 'value1', 'key2': 'value2'}) >>> set_entry('table', 'key', {'key1': 'value3'}) >>> get_entry('table', 'key') {'key1': 'value3', 'key2': 'value2'} This commit fix this bug. Signed-off-by: Wataru Ishida <ishida.wataru@lab.ntt.co.jp>
- Loading branch information