We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d7a983 commit 23d1125Copy full SHA for 23d1125
core/src/main/java/dev/vml/es/acm/core/code/ExecutionQueue.java
@@ -129,7 +129,7 @@ public TopicStatistics getStatistics() {
129
return StreamUtils.asStream(jobManager.getTopicStatistics().iterator())
130
.filter(ts -> TOPIC.equals(ts.getTopic()))
131
.findFirst()
132
- .orElseThrow(() -> new AcmException(String.format("Cannot find topic statistics for topic '%s'!", TOPIC)));
+ .orElseThrow(() -> new AcmException(String.format("Cannot find statistics for topic '%s'!", TOPIC)));
133
}
134
135
public long getMaxSize() {
0 commit comments