forked from CodisLabs/codis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfe.py
More file actions
33 lines (21 loc) · 780 Bytes
/
fe.py
File metadata and controls
33 lines (21 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/env python3
from utils import *
import atexit
import json
import datetime
class CodisFE(Process):
def __init__(self, port, assets):
self.port = port
self.logfile = "fe-{}.log".format(port)
self.command = "codis-fe --filesystem rootfs --listen 0.0.0.0:{} --assets-dir={}".format(self.port, assets)
Process.__init__(self, self.command, self.logfile)
dict = {"pid": self.proc.pid, "assets": assets}
print(" >> codis.fe = " + json.dumps(dict, sort_keys=True))
if __name__ == "__main__":
children = []
atexit.register(kill_all, children)
children.append(CodisFE(8080, "../cmd/fe/assets"))
check_alive(children, 3)
while True:
print(datetime.datetime.now())
time.sleep(5)