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
If the port is closed when the current Java thread is interrupted, the closing will be skipped silently.
IOLockedMutex.writeLock().tryLock() throws a InterruptedExceptionhere without even trying to acquire the lock. This skips the actual close without any notice.
Expected behavior would be to try at least one time to acquire the lock and close the port.
The text was updated successfully, but these errors were encountered:
If the port is closed when the current Java thread is interrupted, the closing will be skipped silently.
IOLockedMutex.writeLock().tryLock()
throws aInterruptedException
here without even trying to acquire the lock. This skips the actual close without any notice.Expected behavior would be to try at least one time to acquire the lock and close the port.
The text was updated successfully, but these errors were encountered: