summaryrefslogtreecommitdiffstats
path: root/jdisc_core/src/main/java/com/yahoo/jdisc/handler/RequestDispatch.java
diff options
context:
space:
mode:
authorjonmv <venstad@gmail.com>2023-10-11 21:44:23 +0200
committerjonmv <venstad@gmail.com>2023-10-11 21:44:23 +0200
commitac6c7464aba758270e1aa2674ba8c0d25faed79d (patch)
tree93bd83dc9ef92b3d1cffd11e8926c24f2b686c24 /jdisc_core/src/main/java/com/yahoo/jdisc/handler/RequestDispatch.java
parent57deef966539acdd3c96b52701fb29cf9062f6e0 (diff)
Info log message when MbusServer is finally destroyed
Diffstat (limited to 'jdisc_core/src/main/java/com/yahoo/jdisc/handler/RequestDispatch.java')
-rw-r--r--jdisc_core/src/main/java/com/yahoo/jdisc/handler/RequestDispatch.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/jdisc_core/src/main/java/com/yahoo/jdisc/handler/RequestDispatch.java b/jdisc_core/src/main/java/com/yahoo/jdisc/handler/RequestDispatch.java
index 28037ce6fb4..b60b62e3f86 100644
--- a/jdisc_core/src/main/java/com/yahoo/jdisc/handler/RequestDispatch.java
+++ b/jdisc_core/src/main/java/com/yahoo/jdisc/handler/RequestDispatch.java
@@ -119,7 +119,7 @@ public abstract class RequestDispatch implements Future<Response>, ResponseHandl
try {
return futureResponse.get();
} catch (InterruptedException | ExecutionException e) {
- throw new IllegalStateException(e); // Should not happens since both futures are complete
+ throw new IllegalStateException(e); // Should not happen since both futures are complete
}
});
}