anton-vinogradov opened a new pull request, #13290:
URL: https://github.com/apache/ignite/pull/13290

   ## Summary
   
   All four `@Test` methods in `CacheNearReaderUpdateTest` (`testNoBackups`, 
`testOneBackup`, `testOneBackupNearEnabled`, `testOneBackupStoreEnabled`) 
funnel into the shared private helper `runTestGetUpdateMultithreaded(...)`, 
whose first line is:
   
   ```java
   fail("https://issues.apache.org/jira/browse/IGNITE-627";);
   ```
   
   As a result every test in the class fails 100% of the time by design — the 
class documents the unfixed bug 
[IGNITE-627](https://issues.apache.org/jira/browse/IGNITE-627). These are 
deterministic failures (not flaky) and are pure red noise in CI.
   
   This mutes the whole class under the existing ticket via a class-level 
`@Ignore`, matching the existing precedent `GridCacheOnCopyFlagAtomicSelfTest`.
   
   ## Changes
   
   - Add `import org.junit.Ignore;`
   - Annotate the class with 
`@Ignore("https://issues.apache.org/jira/browse/IGNITE-627";)`
   
   🤖 Generated with [Claude Code](https://claude.com/claude-code)


-- 
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]

Reply via email to