Skip to content
This repository was archived by the owner on Feb 24, 2026. It is now read-only.

Commit 6c088d7

Browse files
authored
fix syntax error
1 parent 13cb987 commit 6c088d7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

samples/snippets/src/main/java/com/example/bigquerystorage/WriteToDefaultStream.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,8 @@ private JsonStreamWriter createStreamWriter(String tableName)
184184
.setChannelsPerCpu(2)
185185
.build())
186186
.setEnableConnectionPool(true)
187-
.setFlowControlSettings(FlowControlSettings.newBuilder().setMaxOutstandingElementCount(100).build());
187+
.setFlowControlSettings(
188+
FlowControlSettings.newBuilder().setMaxOutstandingElementCount(100).build())
188189
// If value is missing in json and there is a default value configured on bigquery
189190
// column, apply the default value to the missing value field.
190191
.setDefaultMissingValueInterpretation(

0 commit comments

Comments
 (0)