Skip to content

Commit 81cfed7

Browse files
authored
Fix timeout types of bigtable export job (#3389)
1 parent 9a83585 commit 81cfed7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

v1/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<properties>
3737
<open-census.version>0.31.1</open-census.version>
3838
<!-- TODO: check if this could be declared on a Beam BOM instead of here -->
39-
<bigtable-beam-import.version>2.16.0</bigtable-beam-import.version>
39+
<bigtable-beam-import.version>2.16.1</bigtable-beam-import.version>
4040
<protobuf.version>4.29.4</protobuf.version>
4141
<junit.jupiter.version>6.0.1</junit.jupiter.version>
4242
<codehaus-jackson.version>1.9.13</codehaus-jackson.version>

v1/src/main/java/com/google/cloud/teleport/templates/ExportJobPlaceholder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,15 +147,15 @@ protected interface ExportJobPlaceholderOptions {
147147
optional = true,
148148
description = "Bigtable read Rpc timeout",
149149
helpText = "Bigtable read RPC timeout in milliseconds.")
150-
ValueProvider<Integer> getBigtableReadRpcTimeoutMs();
150+
ValueProvider<String> getBigtableReadRpcTimeoutMs();
151151

152152
@TemplateParameter.Text(
153153
order = 12,
154154
groupName = "Source",
155155
optional = true,
156156
description = "Bigtable read Rpc attempt timeout",
157157
helpText = "Bigtable read RPC attempt timeout in milliseconds.")
158-
ValueProvider<Integer> getBigtableReadRpcAttemptTimeoutMs();
158+
ValueProvider<String> getBigtableReadRpcAttemptTimeoutMs();
159159

160160
@TemplateCreationParameter(value = "false")
161161
@Description("Wait for pipeline to finish.")

0 commit comments

Comments
 (0)