mirror of
https://github.com/apache/rocketmq.git
synced 2026-08-29 04:13:00 +08:00
@@ -799,7 +799,7 @@ public class PullMessageProcessor implements NettyRequestProcessor {
|
||||
}
|
||||
}
|
||||
} catch (RemotingCommandException e1) {
|
||||
LOGGER.error("excuteRequestWhenWakeup run", e1);
|
||||
LOGGER.error("executeRequestWhenWakeup run", e1);
|
||||
}
|
||||
};
|
||||
this.brokerController.getPullMessageExecutor().submit(new RequestTask(run, channel, request));
|
||||
|
||||
@@ -82,7 +82,7 @@ public class DefaultPromise<V> implements Promise<V> {
|
||||
try {
|
||||
lock.wait(waitTime);
|
||||
} catch (InterruptedException e) {
|
||||
LOG.error("promise get value interrupted,excepiton:{}", e.getMessage());
|
||||
LOG.error("promise get value interrupted,exception:{}", e.getMessage());
|
||||
}
|
||||
|
||||
if (!isDoing()) {
|
||||
|
||||
@@ -132,7 +132,7 @@ public class AllocateMappedFileService extends ServiceThread {
|
||||
super.shutdown(true);
|
||||
for (AllocateRequest req : this.requestTable.values()) {
|
||||
if (req.mappedFile != null) {
|
||||
log.info("delete pre allocated maped file, {}", req.mappedFile.getFileName());
|
||||
log.info("delete pre allocated mapped file, {}", req.mappedFile.getFileName());
|
||||
req.mappedFile.destroy(1000);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -356,7 +356,7 @@ public class PerfCounter {
|
||||
}
|
||||
|
||||
} catch (Exception e) {
|
||||
logger.error("{} get unknown errror", getServiceName(), e);
|
||||
logger.error("{} get unknown error", getServiceName(), e);
|
||||
try {
|
||||
Thread.sleep(1000);
|
||||
} catch (Throwable ignored) {
|
||||
|
||||
Reference in New Issue
Block a user