summaryrefslogtreecommitdiffstats
path: root/jrt/src
diff options
context:
space:
mode:
Diffstat (limited to 'jrt/src')
-rw-r--r--jrt/src/com/yahoo/jrt/InvocationClient.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/jrt/src/com/yahoo/jrt/InvocationClient.java b/jrt/src/com/yahoo/jrt/InvocationClient.java
index ed95976f546..0b01ea0935b 100644
--- a/jrt/src/com/yahoo/jrt/InvocationClient.java
+++ b/jrt/src/com/yahoo/jrt/InvocationClient.java
@@ -89,7 +89,7 @@ class InvocationClient implements ReplyHandler, Runnable {
if (!conn.cancelReply(this)) {
return;
}
- req.setError(ErrorCode.TIMEOUT, "Request timed out");
+ req.setError(ErrorCode.TIMEOUT, "Request timed out after " + timeout + " seconds.");
reqWaiter.handleRequestDone(req);
}
}