Commit 3259e6b3 by Alexander Pivovarov Committed by Tianqi Chen

Fix PRC typo (#2939)

parent 11b09cc5
......@@ -21,7 +21,7 @@ def main():
parser.add_argument('--rpc-host', type=str, default="0.0.0.0",
help='the hostname of the server')
parser.add_argument('--rpc-port', type=int, default=9090,
help='The port of the PRC')
help='The port of the RPC')
args = parser.parse_args()
logging.basicConfig(level=logging.INFO)
......
......@@ -12,7 +12,7 @@ def main():
parser.add_argument('--host', type=str, default="",
help='the hostname of the tracker')
parser.add_argument('--port', type=int, default=None,
help='The port of the PRC')
help='The port of the RPC')
args = parser.parse_args()
logging.basicConfig(level=logging.INFO)
......
......@@ -56,7 +56,7 @@ if __name__ == "__main__":
parser.add_argument('--host', type=str, default="0.0.0.0",
help='the hostname of the server')
parser.add_argument('--port', type=int, default=9090,
help='The port of the PRC')
help='The port of the RPC')
parser.add_argument('--web-port', type=int, default=8888,
help='The port of the http/websocket server')
parser.add_argument('--example-rpc', type=bool, default=False,
......
......@@ -37,9 +37,9 @@ if __name__ == "__main__":
parser.add_argument('--host', type=str, default="0.0.0.0",
help='the hostname of the server')
parser.add_argument('--port', type=int, default=9090,
help='The port of the PRC')
help='The port of the RPC')
parser.add_argument('--port-end', type=int, default=9199,
help='The end search port of the PRC')
help='The end search port of the RPC')
parser.add_argument('--tracker', type=str,
help="The address of RPC tracker in host:port format. "
"e.g. (10.77.1.234:9190)")
......
......@@ -20,9 +20,9 @@ if __name__ == "__main__":
parser.add_argument('--host', type=str, default="0.0.0.0",
help='the hostname of the tracker')
parser.add_argument('--port', type=int, default=9190,
help='The port of the PRC')
help='The port of the RPC')
parser.add_argument('--port-end', type=int, default=9199,
help='The end search port of the PRC')
help='The end search port of the RPC')
parser.add_argument('--no-fork', dest='fork', action='store_false',
help="Use spawn mode to avoid fork. This option \
is able to avoid potential fork problems with Metal, OpenCL \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment