mirror of
https://gitlab.com/manzerbredes/clusterman.git
synced 2025-04-06 03:56:27 +02:00
Minor changes
This commit is contained in:
parent
20d4f6f28f
commit
3e67064278
2 changed files with 7 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
||||||
import os, json
|
import os, json, time
|
||||||
from clusterman.config import CONF
|
from clusterman.config import CONF
|
||||||
|
|
||||||
|
|
||||||
|
@ -37,7 +37,9 @@ def scan(timeout):
|
||||||
else:
|
else:
|
||||||
print("")
|
print("")
|
||||||
with open(CONF["paths"]["nodes"], "w") as f:
|
with open(CONF["paths"]["nodes"], "w") as f:
|
||||||
f.write(json.dumps(nodes))
|
f.write(json.dumps(nodes,indent=4))
|
||||||
|
CONF["cluster"]["last_scan"]=int(time.time())
|
||||||
|
CONF.save()
|
||||||
|
|
||||||
def check(timeout):
|
def check(timeout):
|
||||||
nodes_path=CONF["paths"]["nodes"]
|
nodes_path=CONF["paths"]["nodes"]
|
||||||
|
|
|
@ -12,7 +12,8 @@ class Config:
|
||||||
"cluster": {
|
"cluster": {
|
||||||
"ip4_from": "10.128.0.133",
|
"ip4_from": "10.128.0.133",
|
||||||
"ip4_to": "10.128.0.140",
|
"ip4_to": "10.128.0.140",
|
||||||
"ip4_ignore": ["10.0.0.5", "10.0.0.1"]
|
"ip4_ignore": ["10.0.0.5", "10.0.0.1"],
|
||||||
|
"last_scan": None
|
||||||
},
|
},
|
||||||
"timeout": 0.5
|
"timeout": 0.5
|
||||||
}
|
}
|
||||||
|
@ -31,7 +32,7 @@ class Config:
|
||||||
|
|
||||||
def save(self):
|
def save(self):
|
||||||
with open(self.CONF_FILE, "w") as f:
|
with open(self.CONF_FILE, "w") as f:
|
||||||
f.write(json.dumps(self.config))
|
f.write(json.dumps(self.config,indent=4, sort_keys=True))
|
||||||
|
|
||||||
def __getitem__(self, key):
|
def __getitem__(self, key):
|
||||||
return self.config[key]
|
return self.config[key]
|
||||||
|
|
Loading…
Add table
Reference in a new issue