diff --git a/src/config.py b/src/config.py --- a/src/config.py +++ b/src/config.py @@ -21,10 +21,10 @@ conf=dict() if os.path.isfile(configFile): with open(configFile) as f: conf=json.load(f) -version=[0,0,1] -lowestCompatible=[0,0,0] # tuple is more fitting but json conversion transforms it into a list anyway +version=[0,1,0] +lowestCompatible=[0,1,0] # tuple is more fitting but json conversion transforms it into a list anyway hosts=conf.get("hosts",["127.0.0.1"]) port=conf.get("port",9901) -batchSize=conf.get("batchSize",256) +batchSize=conf.get("batchSize",64)