We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1810bc4 commit c29f27dCopy full SHA for c29f27d
server/src/main/java/org/elasticsearch/ingest/IngestStats.java
@@ -79,7 +79,7 @@ public static IngestStats read(StreamInput in) throws IOException {
79
for (var i = 0; i < size; i++) {
80
ProjectId projectId = in.getTransportVersion().onOrAfter(TransportVersions.NODES_STATS_SUPPORTS_MULTI_PROJECT)
81
? ProjectId.readFrom(in)
82
- // We will not have older nodes in a multi-project cluster, so we can assume that everything is in the default cluster.
+ // We will not have older nodes in a multi-project cluster, so we can assume that everything is in the default project.
83
: Metadata.DEFAULT_PROJECT_ID;
84
var pipelineId = in.readString();
85
var pipelineStat = readStats(in);
0 commit comments