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
Describe the bug
I'm trying to inject a ManagedExecutor (using Kotlin and injecting into @Singleton bean that extends MutinyExampleServiceGrpc.ExampleServiceImplBase if that matters) and get
Parameter specified as non-null is null: method com.example.Example.<init>, parameter managedExecutor"
I tried both constructor injection as well as field injection via lateinit var
Expected behavior
ManagedExecutor is injected
Actual behavior
ManagedExecutor is not injected to my bean (both 1.6.0.Final and 1.6.1.Final)
But it's injected successfully if I change the version to 1.5.2.Final
The text was updated successfully, but these errors were encountered:
Does your project depend on quarkus-smallrye-context-propagation? I think there were some fixes around this where previously is may have been accidentally included as a transitive dep in 1.5.
@stuartwdouglas
yes, basically as soon as I switch from 1.6.1 to 1.5.2 version (without any other changes) it starts working as expected, so I suppose my configuration is correct.
Describe the bug
I'm trying to inject a ManagedExecutor (using Kotlin and injecting into
@Singleton
bean that extendsMutinyExampleServiceGrpc.ExampleServiceImplBase
if that matters) and getI tried both constructor injection as well as field injection via
lateinit var
Expected behavior
ManagedExecutor is injected
Actual behavior
ManagedExecutor is not injected to my bean (both 1.6.0.Final and 1.6.1.Final)
But it's injected successfully if I change the version to 1.5.2.Final
The text was updated successfully, but these errors were encountered: