uschindler commented on issue #13344: URL: https://github.com/apache/lucene/issues/13344#issuecomment-2100249027
Hi, sorry for being late. I am busy at moment, but as quick fix I applied locally the following: ```diff gradle/testing/randomization.gradle | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/gradle/testing/randomization.gradle b/gradle/testing/randomization.gradle index 44ae964cab0..f3d25d0c4e2 100644 --- a/gradle/testing/randomization.gradle +++ b/gradle/testing/randomization.gradle @@ -105,12 +105,8 @@ allprojects { [propName: 'tests.LUCENE_VERSION', value: baseVersion, description: "Base Lucene version."], [propName: 'tests.bwcdir', value: null, description: "Data for backward-compatibility indexes."], // vectorization related - [propName: 'tests.vectorsize', - value: { -> - RandomPicks.randomFrom(new Random(projectSeedLong), ["128", "256", "512"]) - }, - description: "Sets preferred vector size in bits."], - [propName: 'tests.forceintegervectors', value: "true", description: "Forces use of integer vectors even when slow."], + [propName: 'tests.vectorsize', value: null, description: "Sets preferred vector size in bits."], + [propName: 'tests.forceintegervectors', value: false, description: "Forces use of integer vectors even when slow."], ] } } ``` This restores the old defaults, but still hsows all parameters in documentation. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org