Replies: 1 comment 7 replies
-
/cc @cescoffier (mutiny), @jponge (mutiny) |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all,
I am getting my feet wet with Mutiny and quite frankly struggling a bit despite reading every tutorial & posts I could find.
From my Quarkus app I need to download a file from a Stripe API, store that file as a local temp file, then store the file is AWS S3.
I have a reactive REST client that seems to be working (code below), however I am not quite sure how I should set up the Uni chain. This attempt fails with a BlockingNotAllowedException; I read that the @Blocking annotation allows Mutiny to automatically decide whether to switch to a worker thread, but that doesn't work in that context?
The exception (stack trace below) happens even if I uncomment the "runSubscriptionOn" line... so I am kind of stuck :(
The exception stack trace:
The REST Client:
Any pointers welcome!
Beta Was this translation helpful? Give feedback.
All reactions