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
When using JBoss Log Manager as the log manager (which for instance is used by the Quarkus framework), when trying to connect the driver throws a SQLException caused by the call here toLogger.setParent .
This happens because the JBoss Logger implementation for some reason doesn't support setParent and unconditionally throws a SecurityException. But this prevents using the JDBC driver in Quarkus applications, so it would nice if it could be patched to support it, even if just try-catching the setParent call and silently ignoring this error.
Thanks
The text was updated successfully, but these errors were encountered:
When using JBoss Log Manager as the log manager (which for instance is used by the Quarkus framework), when trying to connect the driver throws a
SQLException
caused by the call here toLogger.setParent
.This happens because the JBoss Logger implementation for some reason doesn't support
setParent
and unconditionally throws a SecurityException. But this prevents using the JDBC driver in Quarkus applications, so it would nice if it could be patched to support it, even if just try-catching the setParent call and silently ignoring this error.Thanks
The text was updated successfully, but these errors were encountered: