Skip to content

Commit

Permalink
[BEAM-11648] Fix exception with BigQuery StreamWriter TraceID. (#16616)
Browse files Browse the repository at this point in the history
  • Loading branch information
chamikaramj authored Jan 26, 2022
1 parent a1f3f86 commit ccc0741
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1197,7 +1197,7 @@ public StreamAppendClient getStreamAppendClient(String streamName, Descriptor de
StreamWriter streamWriter =
StreamWriter.newBuilder(streamName)
.setWriterSchema(protoSchema)
.setTraceId("Dataflow")
.setTraceId("Dataflow:" + options.getJobName())
.build();
return new StreamAppendClient() {
private int pins = 0;
Expand Down

0 comments on commit ccc0741

Please sign in to comment.