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.
1 parent dfaaa0b commit 275e71dCopy full SHA for 275e71d
src/cbapi/response/models.py
@@ -836,7 +836,13 @@ 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
+ full_results = False
841
+ try:
842
+ full_results = self._cb.get_object(self._urlobject, query_parameters=convert_query_params(self._query))
843
+ except ServerError as se:
844
845
846
if not full_results:
847
self._results = []
848
else:
0 commit comments