We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dfaaa0b + aed8fbd commit f638706Copy full SHA for f638706
src/cbapi/response/models.py
@@ -836,7 +836,12 @@ def where(self, new_query):
836
@property
837
def results(self):
838
if not self._full_init:
839
- full_results = self._cb.get_object(self._urlobject, query_parameters=convert_query_params(self._query))
+ #ZE CB-15681 - REMOVE BLOCK WHEN BUG IS FIXED
840
+ try:
841
+ full_results = self._cb.get_object(self._urlobject, query_parameters=convert_query_params(self._query))
842
+ except ServerError as se:
843
+ full_results = False
844
845
if not full_results:
846
self._results = []
847
else:
0 commit comments