-
I am working with Quarkus and their reactive rest client, and trying to do something that to me appears quite simple, but somehow it's not working the way I expected it to. I looked at the example here uni-transforming-an-item-into-a-uni
This seems very straight forward, to get into more detail, I am trying to call a webservice, and then when it replies, call another service using the value of it's reply. ` Uni otlLink = oneTimeLinksAdapter.createOneTimeLink(finalUrl);
It works when I do not try to chain them, it even works if I manually enter the value, but that's obviously not very useful. I get the following error.
I also get this.
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Do you have any reproducer? It's a bit hard to guess types and what methods do. |
Beta Was this translation helpful? Give feedback.
-
While building the reproducer, I stumbled upon why it was not working. A CorrelationIdFilter had recently been added and this was causing the issue.
This was causing the issue, after removing it, everything worked as expected. |
Beta Was this translation helpful? Give feedback.
While building the reproducer, I stumbled upon why it was not working.
A CorrelationIdFilter had recently been added and this was causing the issue.