diff --git a/clearml/backend_api/session/client/client.py b/clearml/backend_api/session/client/client.py index f96c3512..3fbaf9a0 100644 --- a/clearml/backend_api/session/client/client.py +++ b/clearml/backend_api/session/client/client.py @@ -410,7 +410,9 @@ def make_action(service, request_cls): elif action in ["get_all", "get_all_ex"]: # noinspection PyProtectedMember - dest = service.response_mapping[request_cls]._get_data_props().popitem()[0] + for dest in service.response_mapping[request_cls]._get_data_props().keys(): + if dest != "scroll_id": + break @wrap def get(self, *args, **kwargs):