diff --git a/daemon/examples/grpc/distributed_switch.py b/daemon/examples/grpc/distributed_switch.py index 0d781c19..e8ddfb4c 100644 --- a/daemon/examples/grpc/distributed_switch.py +++ b/daemon/examples/grpc/distributed_switch.py @@ -74,10 +74,14 @@ if __name__ == "__main__": parser.add_argument( "-a", "--address", + required=True, help="local address that distributed servers will use for gre tunneling", ) parser.add_argument( - "-s", "--server", help="distributed server to use for creating nodes" + "-s", + "--server", + required=True, + help="distributed server to use for creating nodes", ) args = parser.parse_args() main(args)