mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-23 23:06:39 +01:00
Make codacy happy
Signed-off-by: HenrikJannsen <boilingfrog@gmx.com>
This commit is contained in:
parent
abbee20284
commit
e1d8d0a6a0
1 changed files with 5 additions and 2 deletions
|
@ -219,11 +219,14 @@ public class RpcService {
|
|||
});
|
||||
}
|
||||
}, MoreExecutors.directExecutor());
|
||||
} catch (Exception e) {
|
||||
if (!shutdownInProgress || !(e instanceof RejectedExecutionException)) {
|
||||
} catch (RejectedExecutionException e) {
|
||||
if (!shutdownInProgress) {
|
||||
log.warn(e.toString(), e);
|
||||
throw e;
|
||||
}
|
||||
} catch (Exception e) {
|
||||
log.warn(e.toString(), e);
|
||||
throw e;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue