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
I would expect to be able to run ./mvnw -B test -q in CI & locally without seeing a bunch of managed orphan channels not being shutdown properly. I would have thought these orphaned channels should fail the build, but in CI it is successful even with an orphaned channel.
Actual Behavior
There are several orphaned channels in the existing code.
io.grpc.internal.ManagedChannelOrphanWrapper$ManagedChannelReference cleanQueue
SEVERE: *~*~*~ Previous channel ManagedChannelImpl{logId=37, target=directaddress:///9b8b79eb-09f7-483c-8801-ac1c9c047f62} was not shutdown properly!!! ~*~*~*
Make sure to call shutdown()/shutdownNow() and wait until awaitTermination() returns true.
java.lang.RuntimeException: ManagedChannel allocation site
This muddy's the output, and can lead to confusion about what issue is a result of new code. I myself fell victim to seeing this issue and thinking it was due to my recently added code, only to find out that there are many orphaned channels from existing code.
Steps to Reproduce the Problem
Run: ./mvnw -B test -q locally & look at our CI, example here.
The text was updated successfully, but these errors were encountered:
Expected Behavior
I would expect to be able to run
./mvnw -B test -q
in CI & locally without seeing a bunch of managed orphan channels not being shutdown properly. I would have thought these orphaned channels should fail the build, but in CI it is successful even with an orphaned channel.Actual Behavior
There are several orphaned channels in the existing code.
This muddy's the output, and can lead to confusion about what issue is a result of new code. I myself fell victim to seeing this issue and thinking it was due to my recently added code, only to find out that there are many orphaned channels from existing code.
Steps to Reproduce the Problem
Run:
./mvnw -B test -q
locally & look at our CI, example here.The text was updated successfully, but these errors were encountered: