aboutsummaryrefslogtreecommitdiff
path: root/test/rest-curl.yml
diff options
context:
space:
mode:
authorStaffan Olsson <staffan@repos.se>2017-08-01 13:03:55 +0200
committerStaffan Olsson <staffan@repos.se>2017-08-01 14:04:27 +0200
commitf29e6eb8a20edebce65a3ecca792ce28ba602492 (patch)
treecc266bc7f97fdefe758891aa47a5c8e312e09005 /test/rest-curl.yml
parenteb1a1020055ecca572d0dac9a9d5bfb853b3d722 (diff)
downloadkubernetes-kafka-f29e6eb8a20edebce65a3ecca792ce28ba602492.tar.gz
kubernetes-kafka-f29e6eb8a20edebce65a3ecca792ce28ba602492.tar.bz2
kubernetes-kafka-f29e6eb8a20edebce65a3ecca792ce28ba602492.zip
Logs, unlike docs, revealed that kafka-rest needs ...
both zookeeper and bootstrap addresses. Was getting connection errors to localhost:9092 broker id -1, resulting in REST requests never returning.
Diffstat (limited to 'test/rest-curl.yml')
-rw-r--r--test/rest-curl.yml5
1 files changed, 1 insertions, 4 deletions
diff --git a/test/rest-curl.yml b/test/rest-curl.yml
index 05fc178..7ee719a 100644
--- a/test/rest-curl.yml
+++ b/test/rest-curl.yml
@@ -22,10 +22,7 @@ data:
curl -X POST \
-H "Content-Type: application/vnd.kafka.json.v2+json" -H "Accept: application/vnd.kafka.v2+json" \
--data "{\"records\":[{\"value\":\"Test from $HOSTNAME at $(date -u -Iseconds)\"}]}" \
- $REST/topics/$TOPIC -v --max-time 30 \
- || echo " (timeout might be ok because we only want to send one message)"
- # TODO why does the above block?
-
+ $REST/topics/$TOPIC
curl --retry 10 -H 'Accept: application/vnd.kafka.v2+json' $REST/topics/$TOPIC/partitions
echo ""