Skip to content

Commit

Permalink
Kafka -> 0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
nickmarden committed Sep 8, 2014
1 parent af13ccb commit 4d9860b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cookbooks/kafka/templates/default/server.properties.erb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
############################# Server Basics #############################

# The id of the broker. This must be set to a unique integer for each broker.
brokerid=<%= @kafka[:broker_id] %>
broker.id=<%= @kafka[:broker_id] %>

# Hostname the broker will advertise to consumers. If not set, kafka will use the value returned
# from InetAddress.getLocalHost(). If there are multiple interfaces getLocalHost
Expand Down Expand Up @@ -133,8 +133,8 @@ enable.zookeeper=<%= @zookeeper_pairs.empty? ? false : true %>
# You can also append an optional chroot string to the urls to specify the
# root directory for all kafka znodes.
<% unless @zookeeper_pairs.nil? || @zookeeper_pairs.empty? %>
zk.connect=<%= @zookeeper_pairs %>
zookeeper.connect=<%= @zookeeper_pairs %>
<% end %>

# Timeout in ms for connecting to zookeeper
zk.connectiontimeout.ms=1000000
zookeeper.connectiontimeout.ms=1000000

0 comments on commit 4d9860b

Please sign in to comment.