Skip to content

Commit

Permalink
🩹 add exception handling to wallet-upgrades-in-progress check (openwa…
Browse files Browse the repository at this point in the history
  • Loading branch information
ff137 committed Jun 25, 2024
1 parent a1cc20c commit 68ed949
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion aries_cloudagent/core/conductor.py
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,12 @@ async def start(self) -> None:
except Exception:
LOGGER.exception("Error accepting mediation invitation")

await self.check_for_wallet_upgrades_in_progress()
try:
await self.check_for_wallet_upgrades_in_progress()
except Exception:
LOGGER.exception(
"An exception was caught while checking for wallet upgrades in progress"
)

# notify protcols of startup status
await self.root_profile.notify(STARTUP_EVENT_TOPIC, {})
Expand Down

0 comments on commit 68ed949

Please sign in to comment.