@@ -410,7 +410,6 @@ def validate_outputs(
410
410
SERVER_ADDRESS : "127.0.0.1" ,
411
411
NETWORK_PROTOCOL_VERSION : "1.0" ,
412
412
URL_PATH : "/" ,
413
- URL_FULL : "http://127.0.0.1/" ,
414
413
CLIENT_ADDRESS : "127.0.0.1" ,
415
414
CLIENT_PORT : 32767 ,
416
415
HTTP_RESPONSE_STATUS_CODE : 200 ,
@@ -691,7 +690,6 @@ def update_expected_server(expected):
691
690
{
692
691
SERVER_ADDRESS : "0.0.0.0" ,
693
692
SERVER_PORT : 80 ,
694
- URL_FULL : "http://0.0.0.0/" ,
695
693
}
696
694
)
697
695
return expected
@@ -1007,7 +1005,6 @@ def test_websocket_new_semconv(self):
1007
1005
SERVER_ADDRESS : self .scope ["server" ][0 ],
1008
1006
NETWORK_PROTOCOL_VERSION : self .scope ["http_version" ],
1009
1007
URL_PATH : self .scope ["path" ],
1010
- URL_FULL : f'{ self .scope ["scheme" ]} ://{ self .scope ["server" ][0 ]} { self .scope ["path" ]} ' ,
1011
1008
CLIENT_ADDRESS : self .scope ["client" ][0 ],
1012
1009
CLIENT_PORT : self .scope ["client" ][1 ],
1013
1010
HTTP_RESPONSE_STATUS_CODE : 200 ,
@@ -1578,7 +1575,6 @@ def test_request_attributes_new_semconv(self):
1578
1575
SERVER_ADDRESS : "127.0.0.1" ,
1579
1576
URL_PATH : "/" ,
1580
1577
URL_QUERY : "foo=bar" ,
1581
- URL_FULL : "http://127.0.0.1/?foo=bar" ,
1582
1578
SERVER_PORT : 80 ,
1583
1579
URL_SCHEME : "http" ,
1584
1580
NETWORK_PROTOCOL_VERSION : "1.0" ,
@@ -1637,7 +1633,6 @@ def test_query_string_new_semconv(self):
1637
1633
self .scope ,
1638
1634
_HTTPStabilityMode .HTTP ,
1639
1635
)
1640
- self .assertEqual (attrs [URL_FULL ], "http://127.0.0.1/?foo=bar" )
1641
1636
1642
1637
def test_query_string_both_semconv (self ):
1643
1638
self .scope ["query_string" ] = b"foo=bar"
0 commit comments