Remove unnecessary InterruptedException catch (#130)

This commit is contained in:
Oliver 2022-03-26 22:14:03 +08:00 committed by GitHub
parent 233cce5bb6
commit 6eac49dd23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions

View File

@ -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) {