Skip to content

Commit 6944b5a

Browse files
committed
Disable example class from spot bugs
1 parent 35daa0a commit 6944b5a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

core/src/test/java/org/apache/accumulo/core/file/rfile/ProductionVectorStoreExampleTest.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,15 @@
2828
import org.apache.accumulo.core.data.Key;
2929
import org.apache.accumulo.core.data.Value;
3030

31+
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
32+
3133
/**
3234
* Comprehensive example demonstrating production-ready vector store features including: - Metadata
3335
* integration for per-vector categories - Compression for storage efficiency - Batching/staging for
3436
* performance - Advanced indexing for scalability - Vector chunking for large embeddings
3537
*/
38+
@SuppressFBWarnings(value = "PREDICTABLE_RANDOM",
39+
justification = "This class is an example/demo, not security-sensitive production code.")
3640
public class ProductionVectorStoreExampleTest {
3741

3842
static Random rand = new Random(1234);

0 commit comments

Comments
 (0)