Add 'car/' from commit 'eee0e8dc445691e600680f4abc77f2814b20b054'
git-subtree-dir: car git-subtree-mainline:1d29a5526cgit-subtree-split:eee0e8dc44
This commit is contained in:
22
car/MyRaft/test.py
Normal file
22
car/MyRaft/test.py
Normal file
@@ -0,0 +1,22 @@
|
||||
import argparse
|
||||
import os.path
|
||||
import sys
|
||||
from MyRaft.node import RaftGrpcNode
|
||||
|
||||
# parser = argparse.ArgumentParser(description="Runs a raft node for leader election")
|
||||
# parser.add_argument('-C', '--config', help='Path to config file.')
|
||||
|
||||
# args = parser.parse_args()
|
||||
|
||||
# if args.config:
|
||||
# print("Getting config")
|
||||
# if not os.path.isfile(args.config):
|
||||
# print("Could not find configuration file, aborting")
|
||||
# sys.exit(1)
|
||||
# else:
|
||||
# sys.exit(1)
|
||||
|
||||
# print("Loading gRPC raft node")
|
||||
|
||||
node = RaftGrpcNode('config.json')
|
||||
|
||||
Reference in New Issue
Block a user