Fixed consumer sample to accept bare string

This commit is contained in:
Dave Syer
2017-05-26 12:42:25 +01:00
parent 2a4c46f57b
commit 9bf3601143
12 changed files with 59 additions and 6 deletions

View File

@@ -156,7 +156,7 @@ curl -H "Accept: application/json" localhost:9001/words
=== Register a Consumer:
----
./registerConsumer.sh -n print -f "f->f.subscribe(System.out::println)"
./registerConsumer.sh -n print -t String -f "System.out::println"
----
=== Run a REST Microservice using that Consumer: