Skip to content

Commit 49b47c9

Browse files
committed
rename method
1 parent e3b4248 commit 49b47c9

File tree

1 file changed

+2
-2
lines changed
  • x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/session

1 file changed

+2
-2
lines changed

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/session/EsqlSession.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ public void analyzedPlan(
421421
l.onResponse(result);
422422
}).<PreAnalysisResult>andThen((l, result) -> {
423423
// first attempt (maybe the only one) at analyzing the plan
424-
analyzeAndMaybeRetry(analyzeAction, requestFilter, result, executionInfo, logicalPlanListener, l);
424+
analyzeWithRetry(analyzeAction, requestFilter, result, executionInfo, logicalPlanListener, l);
425425
}).<PreAnalysisResult>andThen((l, result) -> {
426426
assert requestFilter != null : "The second pre-analysis shouldn't take place when there is no index filter in the request";
427427

@@ -735,7 +735,7 @@ private boolean allCCSClustersSkipped(
735735
return false;
736736
}
737737

738-
private static void analyzeAndMaybeRetry(
738+
private static void analyzeWithRetry(
739739
CheckedFunction<PreAnalysisResult, LogicalPlan, Exception> analyzeAction,
740740
QueryBuilder requestFilter,
741741
PreAnalysisResult result,

0 commit comments

Comments
 (0)