We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1dfd824 commit a7bd86aCopy full SHA for a7bd86a
1 file changed
core/sail/lmdb/src/test/java/org/eclipse/rdf4j/sail/lmdb/LmdbStoreErrorHandlingTest.java
@@ -32,8 +32,8 @@ public class LmdbStoreErrorHandlingTest {
32
public void testMapFullError(@TempDir File dataDir) {
33
LmdbStoreConfig config = new LmdbStoreConfig("spoc,psoc");
34
// set small db size
35
- config.setValueDBSize(50000);
36
- config.setTripleDBSize(50000);
+ config.setValueDBSize(500000);
+ config.setTripleDBSize(500000);
37
config.setAutoGrow(false);
38
Repository repo = new SailRepository(new LmdbStore(dataDir, config));
39
0 commit comments