Merge pull request #19060 from bachp/confd-etcd-port

confd service: change default etcd port 4001 -> 2379
This commit is contained in:
Joachim F
2016-09-29 14:59:51 +02:00
committed by GitHub
+1 -1
View File
@@ -33,7 +33,7 @@ in {
nodes = mkOption {
description = "Confd list of nodes to connect to.";
default = [ "http://127.0.0.1:4001" ];
default = [ "http://127.0.0.1:2379" ];
type = types.listOf types.str;
};