Skip to content

Commit 26aca44

Browse files
committed
ignore waitFinishMessagesTimeout info in error msg
1 parent b15b31d commit 26aca44

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

computer-core/src/main/java/org/apache/hugegraph/computer/core/receiver/MessageRecvManager.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,8 @@ public void waitReceivedAllMessages() {
159159
"received in %s ms in superstep %s",
160160
this.expectedFinishMessages, this.waitFinishMessagesTimeout, this.superstep, e);
161161
} catch (InterruptedException | ExecutionException e) {
162-
throw new ComputerException("Error while waiting %s finish-messages " +
163-
"received in %s ms in superstep %s",
164-
this.expectedFinishMessages, this.waitFinishMessagesTimeout, this.superstep, e);
162+
throw new ComputerException("Error while waiting %s finish-messages in superstep %s",
163+
this.expectedFinishMessages, this.superstep, e);
165164
}
166165
}
167166

0 commit comments

Comments
 (0)