Skip to content

Commit a8faf76

Browse files
committed
Fix NPE
1 parent d4fcb2e commit a8faf76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ void startComputeOnDataNodes(
109109
esqlExecutor,
110110
parentTask,
111111
configuration.allowPartialResults(),
112-
maxConcurrentNodesPerCluster
112+
maxConcurrentNodesPerCluster == null ? -1 : maxConcurrentNodesPerCluster
113113
) {
114114
@Override
115115
protected void sendRequest(

0 commit comments

Comments
 (0)