mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-02-25 18:55:28 -06:00
minor fixes
This commit is contained in:
parent
bc63a28426
commit
21ca1d1b2f
@ -257,8 +257,6 @@ public class OptionHelpers implements NBConfigurable {
|
||||
add("defaultidempotence","",(m,v) -> {});
|
||||
|
||||
add("drivermetrics","",(m,v) -> {});
|
||||
|
||||
|
||||
}
|
||||
|
||||
public void add(String name, String description, Modifier modifier) {
|
||||
|
@ -36,7 +36,7 @@ public class ResultCode implements ErrorHandler, NBMapConfigurable {
|
||||
|
||||
@Override
|
||||
public void applyConfig(Map<String, ?> providedConfig) {
|
||||
this.code = Byte.valueOf(providedConfig.get("code").toString());
|
||||
this.code = Byte.parseByte(providedConfig.get("code").toString());
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -62,7 +62,7 @@ public class LoggerConfig extends ConfigurationFactory {
|
||||
);
|
||||
|
||||
/**
|
||||
* Some included libraries are spammy and intefere with normal diagnostic visibility, so
|
||||
* Some included libraries are spammy and interfere with normal diagnostic visibility, so
|
||||
* we squelch them to some reasonable level so they aren't a nuisance.
|
||||
*/
|
||||
public static Map<String, Level> BUILTIN_OVERRIDES = Map.of(
|
||||
|
Loading…
Reference in New Issue
Block a user