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 59d564f commit 007f19aCopy full SHA for 007f19a
hazelcast/client.py
@@ -497,6 +497,10 @@ def get_distributed_objects(self) -> typing.List[Proxy]:
497
response = client_get_distributed_objects_codec.decode_response(invocation.future.result())
498
for dist_obj_info in response:
499
local_distributed_object_infos.discard(dist_obj_info)
500
+
501
+ # python does not support JCache
502
+ if dist_obj_info.service_name == "hz:impl:cacheService":
503
+ continue
504
self._proxy_manager.get_or_create(
505
dist_obj_info.service_name, dist_obj_info.name, create_on_remote=False
506
)
0 commit comments