Skip to content

Commit

Permalink
Merge branch 'introduce-java-time' of https://github.com/googleapis/j…
Browse files Browse the repository at this point in the history
…ava-bigtable into introduce-java-time
  • Loading branch information
diegomarquezp committed Nov 14, 2024
2 parents a7746ad + 959a469 commit 321c952
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,8 @@ public synchronized void createClient(
.setAppProfileId(request.getAppProfileId());

if (request.hasPerOperationTimeout()) {
java.time.Duration newTimeout = java.time.Duration.ofMillis(Durations.toMillis(request.getPerOperationTimeout()));
java.time.Duration newTimeout =
java.time.Duration.ofMillis(Durations.toMillis(request.getPerOperationTimeout()));
settingsBuilder = overrideTimeoutSetting(newTimeout, settingsBuilder);
logger.info(
String.format(
Expand Down

0 comments on commit 321c952

Please sign in to comment.