Skip to content
Snippets Groups Projects
Commit 2fc3e93b authored by Nikhil Singh[MicroSoft]'s avatar Nikhil Singh[MicroSoft] Committed by Smitha Manjunath
Browse files

Exception handling to fix partition service unavailability issue

parent 21f511a9
No related branches found
No related tags found
3 merge requests!232Update os-core-lib-azure,!231initial commit,!196Azure | Increasing Code coverage
......@@ -134,6 +134,10 @@ public class SubscriptionManagerImpl implements ISubscriptionManager {
@Override
public void run() {
subscribeNotificationsEvent();
try {
subscribeNotificationsEvent();
} catch (Exception e) {
LOGGER.error("An exception occurred while subscription registration process : ", e);
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment