We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6afa2a commit 9c7e1ccCopy full SHA for 9c7e1cc
smb/src/main/java/ch/cyberduck/core/smb/SMBSession.java
@@ -350,7 +350,7 @@ public void logout() throws BackgroundException {
350
catch(SMBRuntimeException e) {
351
throw new SMBExceptionMappingService().map(e);
352
}
353
- catch(TransportException e) {
+ catch(TransportException | IllegalStateException e) {
354
throw new BackgroundException(e);
355
356
finally {
smb/src/test/java/ch/cyberduck/core/smb/SMBRootListServiceTest.java
@@ -39,6 +39,5 @@ public void testListAllShares() throws Exception {
39
assertNotEquals(TransferStatus.UNKNOWN_LENGTH, f.attributes().getSize());
40
assertNotEquals(Quota.unknown, f.attributes().getQuota());
41
42
- session.close();
43
44
0 commit comments