Skip to content

Commit

Permalink
Doc update for elasticsearch and kafka (#2615)
Browse files Browse the repository at this point in the history
  • Loading branch information
mans2singh committed May 2, 2020
1 parent fd28fcf commit 12fef37
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/modules/elasticsearch.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ container.stop();
```

Note that if you are still using the [TransportClient](https://www.elastic.co/guide/en/elasticsearch/client/java-api/6.3/transport-client.html)
(not recommended as deprecated), the default cluster name is set to `docker-cluster` so you need to change `cluster.name` setting
(not recommended as it is deprecated), the default cluster name is set to `docker-cluster` so you need to change `cluster.name` setting
or set `client.transport.ignore_cluster_name` to `true`.

## Choose your Elasticsearch license
Expand Down
2 changes: 1 addition & 1 deletion docs/modules/kafka.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ new KafkaContainer().withExternalZookeeper("localhost:2181")

If your test needs to run some other Docker container which needs access to the Kafka, do the following:

* Run you other container on the same network as Kafka container. E.g. as following:
* Run your other container on the same network as Kafka container, e.g.:
```java
new GenericContainer("myImage").withNetwork(kafka.getNetwork())
```
Expand Down

0 comments on commit 12fef37

Please sign in to comment.