mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-02-25 18:55:28 -06:00
allow init-time activity parameter updates without eventing
This commit is contained in:
parent
b9d08bf04c
commit
d1541f0dd2
@ -172,6 +172,12 @@ public class ParameterMap extends ConcurrentHashMap<String,Object> implements Bi
|
||||
return super.get(key);
|
||||
}
|
||||
|
||||
public void setSilently(String paramName, Object newValue) {
|
||||
super.put(paramName, String.valueOf(newValue));
|
||||
logger.trace("setting param silently " + paramName + "=" + newValue);
|
||||
}
|
||||
|
||||
|
||||
public void set(String paramName, Object newValue) {
|
||||
super.put(paramName, String.valueOf(newValue));
|
||||
logger.info("setting param " + paramName + "=" + newValue);
|
||||
|
Loading…
Reference in New Issue
Block a user