You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rename initial to unreferenced in transport versions (#133082)
The concept of "initial" transport version is broader than just the
initial ids created for releases. There are several cases where ids were
skipped for various reasons. In order to ensure validation can still
work (eg density of base ids), this commit broadens the concept to a
place we can define any unreferenced transport version.
Copy file name to clipboardExpand all lines: build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/transport/TransportVersionManagementPluginFuncTest.groovy
+13-3Lines changed: 13 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -46,8 +46,8 @@ class TransportVersionManagementPluginFuncTest extends AbstractGradleFuncTest {
46
46
javaResource("myserver", "transport/definitions/named/"+ name +".csv", ids)
Copy file name to clipboardExpand all lines: build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/transport/ValidateTransportVersionResourcesTask.java
+7-4Lines changed: 7 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -107,10 +107,13 @@ public void validateTransportVersions() throws IOException {
107
107
// now load all definitions, do some validation and record them by various keys for later quick lookup
108
108
// NOTE: this must run after loading referenced names and existing definitions
109
109
// NOTE: this is sorted so that the order of cross validation is deterministic
110
-
for (StringsubDir : List.of("initial", "named")) {
0 commit comments