Remove unnecessary InterruptedException catch (#130)
This commit is contained in:
parent
233cce5bb6
commit
6eac49dd23
|
|
@ -71,8 +71,6 @@ public class CommandService implements BootService, Runnable {
|
|||
|
||||
commandExecutorService.execute(command);
|
||||
serialNumberCache.add(command.getSerialNumber());
|
||||
} catch (InterruptedException e) {
|
||||
LOGGER.error(e, "Failed to take commands.");
|
||||
} catch (CommandExecutionException e) {
|
||||
LOGGER.error(e, "Failed to execute command[{}].", e.command().getCommand());
|
||||
} catch (Throwable e) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue