dweiss commented on code in PR #850: URL: https://github.com/apache/lucene/pull/850#discussion_r861243269
########## lucene/test-framework/src/java/org/apache/lucene/tests/analysis/MockTokenizer.java: ########## @@ -66,11 +67,11 @@ public class MockTokenizer extends Tokenizer { * Limit the default token length to a size that doesn't cause random analyzer failures on * unpredictable data like the enwiki data set. * - * <p>This value defaults to {@code CharTokenizer.DEFAULT_MAX_WORD_LEN}. + * <p>This value defaults to {@link IndexWriter#MAX_TERM_LENGTH}. * * @see "https://issues.apache.org/jira/browse/LUCENE-10541" */ - public static final int DEFAULT_MAX_TOKEN_LENGTH = 255; + public static final int DEFAULT_MAX_TOKEN_LENGTH = IndexWriter.MAX_TERM_LENGTH; Review Comment: Ok. I'll go with 255 and tweak those tests that need it. -- 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