quarkus-http connector #34221
-
I'm using quarkus-http reactive messaging connector.
on the other side (Service2)
all is working fine in local but when moving to openshift nothing happens. (sorry for small info, but I'm in rush now). |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 5 replies
-
Beta Was this translation helpful? Give feedback.
-
I resolved removing
On the "caller" side I'm still using an outgoing channel and everything works fine,but it's just a workaround. |
Beta Was this translation helpful? Give feedback.
-
I tried to reproduce it, but it seems to work OOTB. The only difference is: I built the 2 apps and then used Can you give me more details about the issue? |
Beta Was this translation helpful? Give feedback.
-
Solved!
I was checking extension code and I was convinced Thanks to all you guys for your time! |
Beta Was this translation helpful? Give feedback.
Solved!
I didn't configure any
mp.messaging.incoming.incoming-mail.*
in project 'application.properties' because I configure them directly in Openshift "service deployment" section and seems thatmp.messaging.incoming
properties setted from environment are not correctly managed.I moved
mp.messaging.incoming.*
to masterapplication.properties
on my project and all is working fine.I don't known if beans holding
@Incoming()
annotation are removed during build because nomp.messaging.incoming
properties are found in configuration(s) or ifmp.messaging.incoming
properties are build-time only properties and I was misused them.(https://github.com/quarkiverse/quarkus-reactive-messaging-http/bl…