Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sonic-net/sonic-py-swsssdk
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3b074795c907a7d0afea6d337010393fe9a1509d
Choose a base ref
...
head repository: sonic-net/sonic-py-swsssdk
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 294f5406e971396352b06c3b4954a2f80dd8ba34
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 30, 2017

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    294f540 View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 src/swsssdk/configdb.py
2 changes: 1 addition & 1 deletion src/swsssdk/configdb.py
Original file line number Diff line number Diff line change
@@ -189,7 +189,7 @@ def get_table(self, table):
try:
(_, row) = key.split(self.TABLE_NAME_SEPARATOR, 1)
entry = self.__raw_to_typed(client.hgetall(key))
if entry:
if entry != None:
data[self.deserialize_key(row)] = entry
except ValueError:
pass #Ignore non table-formated redis entries