Skip to content

Commit 8977110

Browse files
committed
fix port type to int
1 parent 207ca76 commit 8977110

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

java-bigquery/google-cloud-bigquery/src/main/java/com/google/cloud/bigquery/telemetry/HttpTracingRequestInitializer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public void initialize(HttpRequest request) throws IOException {
7373
return;
7474
}
7575
String host = request.getUrl().getHost();
76-
Integer port = request.getUrl().getPort();
76+
int port = request.getUrl().getPort();
7777
addInitialHttpAttributesToSpan(span, host, port);
7878
}
7979

0 commit comments

Comments
 (0)