mirror of https://github.com/facebook/rocksdb.git
[RocksJava] Fix RateLimiter Tests in 3.10
This commit is contained in:
parent
6cfb2150d4
commit
582c4b0f74
|
@ -555,7 +555,7 @@ public class DBOptionsTest {
|
|||
try {
|
||||
options = new DBOptions();
|
||||
RateLimiterConfig rateLimiterConfig =
|
||||
new GenericRateLimiterConfig(1000, 0, 1);
|
||||
new GenericRateLimiterConfig(1000, 100 * 1000, 1);
|
||||
options.setRateLimiterConfig(rateLimiterConfig);
|
||||
// Test with parameter initialization
|
||||
anotherOptions = new DBOptions();
|
||||
|
|
|
@ -1130,7 +1130,7 @@ public class OptionsTest {
|
|||
RateLimiterConfig rateLimiterConfig;
|
||||
try {
|
||||
options = new Options();
|
||||
rateLimiterConfig = new GenericRateLimiterConfig(1000, 0, 1);
|
||||
rateLimiterConfig = new GenericRateLimiterConfig(1000, 100 * 1000, 1);
|
||||
options.setRateLimiterConfig(rateLimiterConfig);
|
||||
// Test with parameter initialization
|
||||
anotherOptions = new Options();
|
||||
|
|
Loading…
Reference in New Issue