Skip to content

Commit

Permalink
chore: update constructor visbility for attribute service cached clie…
Browse files Browse the repository at this point in the history
…nt (#201)

* chore: update constructor visbility for attribute service cached client

* spotless
  • Loading branch information
Kishan Sairam Adapa authored Nov 21, 2023
1 parent 32a2977 commit 6491469
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,15 @@ public class AttributeServiceCachedClient {
private final long deadlineMs;
private final ClientCallCredentialsProvider callCredentialsProvider;

AttributeServiceCachedClient(Channel channel, AttributeServiceCachedClientConfig clientConfig) {
public AttributeServiceCachedClient(
Channel channel, AttributeServiceCachedClientConfig clientConfig) {
this(
channel,
clientConfig,
RequestContextClientCallCredsProviderFactory.getClientCallCredsProvider());
}

AttributeServiceCachedClient(
public AttributeServiceCachedClient(
Channel channel,
AttributeServiceCachedClientConfig clientConfig,
ClientCallCredentialsProvider callCredentialsProvider) {
Expand Down

0 comments on commit 6491469

Please sign in to comment.