Current section

113 Versions

Jump to

Compare versions

18 files changed
+126 additions
-43 deletions
  @@ -1,11 +1,11 @@
1 1 PROJECT = brod
2 2 PROJECT_DESCRIPTION = Kafka client library in Erlang
3 - PROJECT_VERSION = 2.2.16
3 + PROJECT_VERSION = 2.3.1
4 4
5 5 DEPS = supervisor3 kafka_protocol
6 6
7 7 dep_supervisor3_commit = 1.1.5
8 - dep_kafka_protocol_commit = 0.7.8
8 + dep_kafka_protocol_commit = 0.9.1
9 9
10 10 TEST_DEPS = meck proper
  @@ -23,7 +23,6 @@ Why "brod"? [http://en.wikipedia.org/wiki/Max_Brod](http://en.wikipedia.org/wiki
23 23 * lz4 compression & decompression
24 24 * new 0.10 on-wire message format
25 25 * new 0.10.1.0 create/delete topic api
26 - * SASL authentication
27 26
28 27 # Building and testing
  @@ -17,6 +17,7 @@ COPY docker-entrypoint.sh /docker-entrypoint.sh
17 17 COPY server.properties /etc/kafka/server.properties
18 18 COPY server.jks /etc/kafka/server.jks
19 19 COPY truststore.jks /etc/kafka/truststore.jks
20 + COPY jaas.conf /etc/kafka/jaas.conf
20 21
21 22 ENTRYPOINT ["/docker-entrypoint.sh"]
  @@ -11,8 +11,10 @@ services:
11 11 ports:
12 12 - "9092:9092"
13 13 - "9192:9192"
14 + - "9292:9292"
14 15 environment:
15 16 BROKER_ID: 0
16 17 PLAINTEXT_PORT: 9092
17 18 SSL_PORT: 9192
19 + SASL_SSL_PORT: 9292
  @@ -11,19 +11,22 @@ services:
11 11 ports:
12 12 - "9092:9092"
13 13 - "9192:9192"
14 + - "9292:9292"
14 15 environment:
15 16 BROKER_ID: 0
16 17 PLAINTEXT_PORT: 9092
17 18 SSL_PORT: 9192
19 + SASL_SSL_PORT: 9292
18 20 kafka_2:
19 21 image: docker_kafka
20 22 container_name: kafka_2
21 23 ports:
22 24 - "9093:9093"
23 25 - "9193:9193"
26 + - "9293:9293"
24 27 environment:
25 28 BROKER_ID: 1
26 29 PLAINTEXT_PORT: 9093
27 30 SSL_PORT: 9193
28 -
31 + SASL_SSL_PORT: 9293
Loading more files…