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 1a87982 commit 8e11b77Copy full SHA for 8e11b77
robusta_krr/core/integrations/kubernetes/__init__.py
@@ -341,13 +341,7 @@ async def _list_namespaced_or_global_objects_batched(
341
new_continue_token = error_body.get("metadata", {}).get("continue")
342
if new_continue_token:
343
logger.info("Continue token expired for jobs listing. Continuing")
344
- return await self._list_namespaced_or_global_objects_batched(
345
- kind=kind,
346
- all_namespaces_request=all_namespaces_request,
347
- namespaced_request=namespaced_request,
348
- limit=limit,
349
- continue_ref=new_continue_token,
350
- )
+ return [], new_continue_token
351
except (json.JSONDecodeError, KeyError):
352
pass
353
raise
0 commit comments