about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorDaniel Peebles <copumpkin@users.noreply.github.com>2017-01-24 22:17:03 -0500
committerGitHub <noreply@github.com>2017-01-24 22:17:03 -0500
commit95add2c2f76521793ee7fed8140411420b53e055 (patch)
tree322da0dbb9e6f0993c447668c588342a9cffeee2 /nixos
parent942a60697d1802e7ac7f3a62f8e759ac7b1e4274 (diff)
parenteebee951763424d932fe9895df8206824d37967f (diff)
downloadnixlib-95add2c2f76521793ee7fed8140411420b53e055.tar
nixlib-95add2c2f76521793ee7fed8140411420b53e055.tar.gz
nixlib-95add2c2f76521793ee7fed8140411420b53e055.tar.bz2
nixlib-95add2c2f76521793ee7fed8140411420b53e055.tar.lz
nixlib-95add2c2f76521793ee7fed8140411420b53e055.tar.xz
nixlib-95add2c2f76521793ee7fed8140411420b53e055.tar.zst
nixlib-95add2c2f76521793ee7fed8140411420b53e055.zip
Merge pull request #22103 from copumpkin/automatic-kafka-broker-id
apache-kafka service: change default brokerId to -1
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/misc/apache-kafka.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/misc/apache-kafka.nix b/nixos/modules/services/misc/apache-kafka.nix
index c856d3294c01..cff053396885 100644
--- a/nixos/modules/services/misc/apache-kafka.nix
+++ b/nixos/modules/services/misc/apache-kafka.nix
@@ -38,7 +38,7 @@ in {
 
     brokerId = mkOption {
       description = "Broker ID.";
-      default = 0;
+      default = -1;
       type = types.int;
     };