We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bcc674 commit f4ea2afCopy full SHA for f4ea2af
1 file changed
src/galaxy/api/plugin.py
@@ -208,7 +208,10 @@ def _get_capabilities(self):
208
209
def _initialize_cache(self, data: Dict):
210
self._persistent_cache = data
211
- self.handshake_complete()
+ try:
212
+ self.handshake_complete()
213
+ except Exception:
214
+ logging.exception("Unhandled exception during `handshake_complete` step")
215
self._pass_control_task = asyncio.create_task(self._pass_control())
216
217
@staticmethod
0 commit comments