From 337160c3fc3654b261eda28a707a79ef79d8471f Mon Sep 17 00:00:00 2001 From: SAY-5 Date: Wed, 15 Apr 2026 20:51:40 -0700 Subject: [PATCH] msq: fix 'occured' -> 'occurred' in ControllerClient Javadoc Javadoc in multi-stage-query/src/main/java/org/apache/druid/msq/exec/ControllerClient.java line 84 read 'error has occured'. Fixed to 'occurred'. Comment-only change. Signed-off-by: SAY-5 --- .../main/java/org/apache/druid/msq/exec/ControllerClient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/multi-stage-query/src/main/java/org/apache/druid/msq/exec/ControllerClient.java b/multi-stage-query/src/main/java/org/apache/druid/msq/exec/ControllerClient.java index f56b752133f6..550009c25cd9 100644 --- a/multi-stage-query/src/main/java/org/apache/druid/msq/exec/ControllerClient.java +++ b/multi-stage-query/src/main/java/org/apache/druid/msq/exec/ControllerClient.java @@ -81,7 +81,7 @@ void postResultsComplete( ) throws IOException; /** - * Client side method to inform the controller that the error has occured in the given worker. + * Client side method to inform the controller that the error has occurred in the given worker. */ void postWorkerError(MSQErrorReport errorWrapper) throws IOException;