Vorlage
[demos/kafka/training] / README.sh
index e61188f..07deaa4 100755 (executable)
--- a/README.sh
+++ b/README.sh
@@ -30,19 +30,13 @@ while ! [[ $(http 0:8080/actuator/health 2> /dev/null) =~ "UP" ]]; do echo "Wait
 while ! [[ $(http 0:8081/actuator/health 2> /dev/null) =~ "UP" ]]; do echo "Waiting for consumer-1..."; sleep 1; done
 while ! [[ $(http 0:8082/actuator/health 2> /dev/null) =~ "UP" ]]; do echo "Waiting for consumer-2..."; sleep 1; done
 
-# tag::nachrichten[]
 echo 6  | http -v :8080/peter
 echo 77 | http -v :8080/klaus
-# end::nachrichten[]
 
 echo "Writing poison pill..."
-# tag::poisonpill[]
 echo 'BOOM!' | kafkacat -P -b :9092 -t test
-# end::poisonpill[]
 
 docker-compose logs -f consumer-1 consumer-2
 
 echo "Restarting consumer-1..."
-# tag::restart[]
 docker-compose up consumer-1
-# end::restart[]