JiriOndrusek commented on issue #743: URL: https://github.com/apache/camel-quarkus/issues/743#issuecomment-644105043
Hi @bframke , I'm trying to simulate an error with your producer. Unfortunately there is no error. Here are my execution steps. Would it be possible to validate, whether I'm using it in the same way? - I've cloned https://github.com/bframke/quarkus-examples.git - I've uncommented https://github.com/bframke/quarkus-examples/blob/master/camel-logging/src/main/java/camel/logging/ContextListener.java#L73 - I've started dev mode using `./gradlew quarkusDev` - I've executed `for i in {1..9999}; do echo "$i"; curl -v -d '{"Event": "Event $i" }' -H "content-type: application/json" http://localhost:8081/topic/curltopic3/event; done` But there was no problem with it. I've also modified your script to show number of requests correctly `for i in {1..9999}; do echo "$i"; curl -v -d "{'Event': 'Event $i' }" -H "content-type: application/json" http://localhost:8081/topic/curltopic3/event; done` Do you have any idea, what am I doing differently? ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
