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
This causes VerifyVersionConstantsIT.testLuceneVersionConstant to fail (log) becuase it tries to pass the version.number through Version.fromString and fromString does not accept -SNAPSHOT qualifiers for versions new than 2.x
In #35412 we added the
-SNAPSHOT
qualifier to the version in the response for the main actionGET /
For example:
In 6.x the qualifier was not included:
This causes
VerifyVersionConstantsIT.testLuceneVersionConstant
to fail (log) becuase it tries to pass theversion.number
throughVersion.fromString
and fromString does not accept-SNAPSHOT
qualifiers for versions new than 2.xelasticsearch/server/src/main/java/org/elasticsearch/Version.java
Lines 297 to 299 in b8be6cb
REPRODUCE WITH:
It looks we either need to:
Version.fromString
if we're now including them againtestLuceneVersionConstant
(but I suspect that won't be the only place).The text was updated successfully, but these errors were encountered: