rmuir commented on PR #12797:
URL: https://github.com/apache/lucene/pull/12797#issuecomment-1806908329
Maybe another way to help the user with this change is to inform them when
checks are being skipped.
e.g. instead of:
```java
if (checksumsOnly == false) {
// Test Livedocs ...
```
We could do something like:
```java
if (checksumsOnly) {
msg(infoStream, "Skipping logical integrity checks: pass -ea -slow to
check logical integrity")
} else {
// Test Livedocs ...
```
https://github.com/apache/lucene/blob/main/lucene/core/src/java/org/apache/lucene/index/CheckIndex.java#L994
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]