Skip to content

Commit

Permalink
Merge "Fixes: Creating more than 100 VMI objects throws Cassandra exc…
Browse files Browse the repository at this point in the history
…eption"
  • Loading branch information
Zuul authored and opencontrail-ci-admin committed May 12, 2016
2 parents 6b3ebbb + 63e2625 commit 8434ac6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config/api-server/vnc_cfg_ifmap.py
Expand Up @@ -909,7 +909,7 @@ def update_perms2(self, obj_uuid):

def uuid_to_obj_dict(self, id):
try:
obj_cols = self._obj_uuid_cf.get(id)
obj_cols = self._obj_uuid_cf.get(id, column_count=self._MAX_COL)
except pycassa.NotFoundException:
raise NoIdError(id)
return obj_cols
Expand Down

0 comments on commit 8434ac6

Please sign in to comment.