pygui changes to avoid deleting session and open xml race conditions, fix to reset canvas view options when creating a new session

This commit is contained in:
Blake Harnden 2020-05-01 14:13:44 -07:00
parent 1f1b1c7b65
commit f7281459ed
4 changed files with 12 additions and 8 deletions

View file

@ -614,7 +614,7 @@ class CoreClient:
Open core xml
"""
try:
response = self.client.open_xml(file_path)
response = self._client.open_xml(file_path)
logging.info("open xml file %s, response: %s", file_path, response)
self.join_session(response.session_id)
except grpc.RpcError as e: