Skip to content

Commit

Permalink
add finished time for message with exception. This is to fix presenta…
Browse files Browse the repository at this point in the history
…tion of last execution time
  • Loading branch information
dzmipt committed Jun 14, 2024
1 parent 23ba58b commit 9bd9e61
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/kx/KConnection.java
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,7 @@ public void run() {
IOException io = e instanceof IOException ?
(IOException) e : new IOException("Exception in message deserialization", e);
message = new KMessage(io);
message.setFinished(K.KTimestamp.now());
lockRead.notifyAll();
}
close();
Expand Down

0 comments on commit 9bd9e61

Please sign in to comment.