Nikita-Shupletsov commented on code in PR #1358: URL: https://github.com/apache/activemq/pull/1358#discussion_r1863993226
########## activemq-broker/src/main/java/org/apache/activemq/security/SimpleCachedLDAPAuthorizationMap.java: ########## @@ -936,7 +936,11 @@ public void namingExceptionThrown(NamingExceptionEvent namingExceptionEvent) { // Init / Destroy public void afterPropertiesSet() throws Exception { - query(); + try { + query(); + } catch (Exception e) { + LOG.error("Error updating authorization map. Partial policy may be applied until the next successful update.", e); Review Comment: I copied the existing error message from https://github.com/apache/activemq/blob/main/activemq-broker/src/main/java/org/apache/activemq/security/SimpleCachedLDAPAuthorizationMap.java#L679 please let me know what you think -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: gitbox-unsubscr...@activemq.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: gitbox-unsubscr...@activemq.apache.org For additional commands, e-mail: gitbox-h...@activemq.apache.org For further information, visit: https://activemq.apache.org/contact