We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b09531 commit b2a6760Copy full SHA for b2a6760
1 file changed
java-bigquery/google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/BigQueryImpl.java
@@ -452,7 +452,10 @@ && getOptions().getOpenTelemetryTracer() != null) {
452
getOptions()
453
.getOpenTelemetryTracer()
454
.spanBuilder("com.google.cloud.bigquery.BigQuery.createJob")
455
- .setAllAttributes(jobInfo.getJobId() != null ? jobInfo.getJobId().getOtelAttributes() : Attributes.empty())
+ .setAllAttributes(
456
+ jobInfo.getJobId() != null
457
+ ? jobInfo.getJobId().getOtelAttributes()
458
+ : Attributes.empty())
459
.setAllAttributes(otelAttributesFromOptions(options))
460
.startSpan();
461
}
0 commit comments