matthiasblaesing opened a new pull request #2247: URL: https://github.com/apache/netbeans/pull/2247
Remove the synchronization in SQLEditorSupport#closeLogger. The critical part (ensuring logger is not closed while it could be acquired) is protected by the finer grained loggerLock and thus the monitor on SQLEditorSupport is not needed. The deadlock sequence showed: - the EDT held the monitor of SQLEditorSupport - a task was dispatched into a request processor - the EDT waited for the task to finish - the task tried to enter the monitor of SQLEditorSupport ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
