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
DefaultPluginManager currently creates a ManagedChannel inside tryInitPlugin, however if the call to initPlugin fails inside it, we don't ever call shutdown() on the created channel, so there's an error logged. It would be great if the channel is shutdown prior to the exception propagating up.
EVERE: *~*~*~ Previous channel ManagedChannelImpl{logId=1, target=[::1]:51216} was not shutdown properly!!! ~*~*~*
Make sure to call shutdown()/shutdownNow() and wait until awaitTermination() returns true.
java.lang.RuntimeException: ManagedChannel allocation site
at io.grpc.internal.ManagedChannelOrphanWrapper$ManagedChannelReference.<init>(ManagedChannelOrphanWrapper.java:100)
at io.grpc.internal.ManagedChannelOrphanWrapper.<init>(ManagedChannelOrphanWrapper.java:60)
at io.grpc.internal.ManagedChannelOrphanWrapper.<init>(ManagedChannelOrphanWrapper.java:51)
at io.grpc.internal.ManagedChannelImplBuilder.build(ManagedChannelImplBuilder.java:631)
at io.grpc.internal.AbstractManagedChannelImplBuilder.build(AbstractManagedChannelImplBuilder.java:297)
at io.pact.plugins.jvm.core.DefaultPluginManager$tryInitPlugin$1.invoke(PluginManager.kt:887)
I'm on Pact JVM Core library 0.4.0
The text was updated successfully, but these errors were encountered:
Hello,
DefaultPluginManager currently creates a ManagedChannel inside
tryInitPlugin
, however if the call toinitPlugin
fails inside it, we don't ever callshutdown()
on the created channel, so there's an error logged. It would be great if the channel is shutdown prior to the exception propagating up.I'm on Pact JVM Core library 0.4.0
The text was updated successfully, but these errors were encountered: