Skip to content

Commit

Permalink
Fix just merged code (#2607)
Browse files Browse the repository at this point in the history
I forgot to remove a test commit from #2596:
31a066d
  • Loading branch information
trask authored Oct 20, 2022
1 parent c44d4b2 commit a77b14d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -603,6 +603,9 @@ public static String getHttpUrlFromServerSpan(Attributes attributes) {
return null;
}
String host = attributes.get(SemanticAttributes.NET_HOST_NAME);
if (host == null) {
return null;
}
Long port = attributes.get(SemanticAttributes.NET_HOST_PORT);
String target = attributes.get(SemanticAttributes.HTTP_TARGET);
if (target == null) {
Expand Down

This file was deleted.

0 comments on commit a77b14d

Please sign in to comment.