While creating a Protocol Buffer Cluster Client you can now provide
hosts in format : e.g. "127.0.0.1:10017". If port is not
provided default port will be Used.
So now you can use following format:
(wc/connect-to-cluster-via-pb! ["10.0.1.2",
"10.0.1.3",
"10.0.1.4",
"10.0.1.5",
"10.0.1.6"])
as well as following format:
(wc/connect-to-cluster-via-pb! ["127.0.0.1:10017",
"127.0.0.1:10027",
"127.0.0.1:10037",
"127.0.0.1:10047",])
While creating a Protocol Buffer Cluster Client you can now provide hosts in format: e.g. "127.0.0.1:10017". If port is not
provided default port will be Used.
So now you can use following format: (wc/connect-to-cluster-via-pb! ["10.0.1.2", "10.0.1.3", "10.0.1.4", "10.0.1.5", "10.0.1.6"])
as well as following format: (wc/connect-to-cluster-via-pb! ["127.0.0.1:10017", "127.0.0.1:10027", "127.0.0.1:10037", "127.0.0.1:10047",])