Skip to content

Commit

Permalink
feat: allow non default service account in DirectPath
Browse files Browse the repository at this point in the history
  • Loading branch information
mohanli-ml committed Nov 22, 2023
1 parent 152bfeb commit c044180
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,6 @@ public static InstantiatingGrpcChannelProvider.Builder defaultGrpcTransportProvi
.setAttemptDirectPath(true)
// Allow using non-default service account in DirectPath.
.setAllowNonDefaultServiceAccount(true);

}

@SuppressWarnings("WeakerAccess")
Expand Down Expand Up @@ -657,8 +656,7 @@ private Builder() {
sampleRowKeysSettings
.setRetryableCodes(IDEMPOTENT_RETRY_CODES)
.setRetrySettings(
IDEMPOTENT_RETRY_SETTINGS
.toBuilder()
IDEMPOTENT_RETRY_SETTINGS.toBuilder()
.setInitialRpcTimeout(Duration.ofMinutes(5))
.setMaxRpcTimeout(Duration.ofMinutes(5))
.build());
Expand Down

0 comments on commit c044180

Please sign in to comment.