You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Typical Spring Cloud Stream configuration assumes that necessary infrastructure components are configured as part of a single application context. However in cases such as the once you see in some cloud components that use spring-cloud-stream there are instances when @EnableBinding may be part of different auto-configuration and as such may be configured before the spring-cloud-stream infrastructure resulting in missed linkages between internal channels and external destinations which typically manifest themselves with Dispatcher has no subscribers... errors.
For those cases it is necessary to instruct spring container to auto-configure configuration that has @EnableBinding before BindingServiceConfiguration