@Override
public CommandProcessorResponse run(String command) throws CommandNeedRetryException {
SessionState ss = SessionState.get();
try {
ss.reloadAuxJars();
} catch (IOException e) {
LOG.error("fail to reload auxiliary jar files", e);
return CommandProcessorResponse.create(e);
}
return new CommandProcessorResponse(0);