Skip to content

Commit be2c699

Browse files
authored
Use the correct id for the multi-project transport version (#123582)
1 parent ca5d251 commit be2c699

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

server/src/main/java/org/elasticsearch/TransportVersions.java

+1-10
Original file line numberDiff line numberDiff line change
@@ -206,16 +206,7 @@ static TransportVersion def(int id) {
206206
public static final TransportVersion BYTE_SIZE_VALUE_ALWAYS_USES_BYTES = def(9_015_0_00);
207207
public static final TransportVersion ESQL_SERIALIZE_SOURCE_FUNCTIONS_WARNINGS = def(9_016_0_00);
208208
public static final TransportVersion ESQL_DRIVER_NODE_DESCRIPTION = def(9_017_0_00);
209-
210-
/*
211-
* WARNING: DO NOT MERGE INTO MAIN!
212-
* This is the transport version used for all multi-project changes.
213-
* This is above any possible transport version that could exist on main during multi-project branch development.
214-
* We don't care about BwC during initial development. Before this code is merged into main,
215-
* this variable needs to be changed to a regular transport version following the same rules as above.
216-
*/
217-
@FixForMultiProject
218-
public static final TransportVersion MULTI_PROJECT = def(9_999_990);
209+
public static final TransportVersion MULTI_PROJECT = def(9_018_0_00);
219210

220211
/*
221212
* STOP! READ THIS FIRST! No, really,

0 commit comments

Comments
 (0)