Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Add ChannelPoolSettings Getter for gRPC's ChannelProvider #2612

Merged
merged 8 commits into from
Apr 2, 2024
Original file line number Diff line number Diff line change
Expand Up @@ -473,6 +473,11 @@ public Integer getMaxInboundMetadataSize() {
return maxInboundMetadataSize;
}

/** The configured channel pool settings used for gRPC's ChannelProvider */
lqiu96 marked this conversation as resolved.
Show resolved Hide resolved
public ChannelPoolSettings getChannelPoolSettings() {
return channelPoolSettings;
}

@Override
public boolean shouldAutoClose() {
return true;
Expand Down
Loading