You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just as with #3, the App Delegate has error handling for when the connection to the message broker is lost. Currently the error is just logged. Proper error handling should be implemented to either crash the app or try to reconnect.
This seems to occur relatively often when running an application, resulting in no executor being registered.
self.connection.interruptionHandler ={
logger.info("Disconnected from broker (interrupted)")};
self.connection.invalidationHandler ={
logger.info("Disconnected from broker (invalidated)")};
The text was updated successfully, but these errors were encountered:
Just as with #3, the App Delegate has error handling for when the connection to the message broker is lost. Currently the error is just logged. Proper error handling should be implemented to either crash the app or try to reconnect.
This seems to occur relatively often when running an application, resulting in no executor being registered.
The text was updated successfully, but these errors were encountered: