Merge "ovs-lib: make db_get_map return empty dict on error"

This commit is contained in:
Jenkins 2012-09-17 07:25:42 +00:00 committed by Gerrit Code Review
commit 652dafc912

View File

@ -179,6 +179,7 @@ class OVSBridge:
if output:
str = output.rstrip("\n\r")
return self.db_str_to_map(str)
return {}
def db_get_val(self, table, record, column):
output = self.run_vsctl(["get", table, record, column])