MCPcopy Create free account
hub / github.com/alibaba/GraphScope / _close_interactive_instances

Method _close_interactive_instances

python/graphscope/framework/graph.py:1413–1419  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1411 self._learning_instance_list.append(instance)
1412
1413 def _close_interactive_instances(self):
1414 for instance in self._interactive_instance_list:
1415 try:
1416 instance.close()
1417 except Exception: # pylint: disable=broad-except
1418 logger.exception("Failed to close interactive instances")
1419 self._interactive_instance_list.clear()
1420
1421 def _close_learning_instances(self):
1422 for instance in self._learning_instance_list:

Callers 1

_unloadMethod · 0.95

Calls 3

exceptionMethod · 0.80
closeMethod · 0.65
clearMethod · 0.65

Tested by

no test coverage detected