@@ -86,7 +86,6 @@ async def set_properties( # pylint: disable=inconsistent-return-statements
8686 _content = self ._serialize .body (storage_service_properties , 'StorageServiceProperties' , is_xml = True )
8787
8888 request = build_set_properties_request (
89- url = self ._config .url ,
9089 restype = restype ,
9190 comp = comp ,
9291 version = self ._config .version ,
@@ -120,7 +119,7 @@ async def set_properties( # pylint: disable=inconsistent-return-statements
120119 if cls :
121120 return cls (pipeline_response , None , response_headers )
122121
123- set_properties .metadata = {'url' : "{url} /" } # type: ignore
122+ set_properties .metadata = {'url' : "/" } # type: ignore
124123
125124
126125 @distributed_trace_async
@@ -164,7 +163,6 @@ async def get_properties(
164163
165164
166165 request = build_get_properties_request (
167- url = self ._config .url ,
168166 restype = restype ,
169167 comp = comp ,
170168 version = self ._config .version ,
@@ -199,7 +197,7 @@ async def get_properties(
199197
200198 return deserialized
201199
202- get_properties .metadata = {'url' : "{url} /" } # type: ignore
200+ get_properties .metadata = {'url' : "/" } # type: ignore
203201
204202
205203 @distributed_trace_async
@@ -244,7 +242,6 @@ async def get_statistics(
244242
245243
246244 request = build_get_statistics_request (
247- url = self ._config .url ,
248245 restype = restype ,
249246 comp = comp ,
250247 version = self ._config .version ,
@@ -280,7 +277,7 @@ async def get_statistics(
280277
281278 return deserialized
282279
283- get_statistics .metadata = {'url' : "{url} /" } # type: ignore
280+ get_statistics .metadata = {'url' : "/" } # type: ignore
284281
285282
286283 @distributed_trace_async
@@ -344,7 +341,6 @@ async def list_containers_segment(
344341
345342
346343 request = build_list_containers_segment_request (
347- url = self ._config .url ,
348344 comp = comp ,
349345 version = self ._config .version ,
350346 prefix = prefix ,
@@ -382,7 +378,7 @@ async def list_containers_segment(
382378
383379 return deserialized
384380
385- list_containers_segment .metadata = {'url' : "{url} /" } # type: ignore
381+ list_containers_segment .metadata = {'url' : "/" } # type: ignore
386382
387383
388384 @distributed_trace_async
@@ -431,7 +427,6 @@ async def get_user_delegation_key(
431427 _content = self ._serialize .body (key_info , 'KeyInfo' , is_xml = True )
432428
433429 request = build_get_user_delegation_key_request (
434- url = self ._config .url ,
435430 restype = restype ,
436431 comp = comp ,
437432 version = self ._config .version ,
@@ -469,7 +464,7 @@ async def get_user_delegation_key(
469464
470465 return deserialized
471466
472- get_user_delegation_key .metadata = {'url' : "{url} /" } # type: ignore
467+ get_user_delegation_key .metadata = {'url' : "/" } # type: ignore
473468
474469
475470 @distributed_trace_async
@@ -501,7 +496,6 @@ async def get_account_info( # pylint: disable=inconsistent-return-statements
501496
502497
503498 request = build_get_account_info_request (
504- url = self ._config .url ,
505499 restype = restype ,
506500 comp = comp ,
507501 version = self ._config .version ,
@@ -535,7 +529,7 @@ async def get_account_info( # pylint: disable=inconsistent-return-statements
535529 if cls :
536530 return cls (pipeline_response , None , response_headers )
537531
538- get_account_info .metadata = {'url' : "{url} /" } # type: ignore
532+ get_account_info .metadata = {'url' : "/" } # type: ignore
539533
540534
541535 @distributed_trace_async
@@ -585,7 +579,6 @@ async def submit_batch(
585579 _content = self ._serialize .body (body , 'IO' )
586580
587581 request = build_submit_batch_request (
588- url = self ._config .url ,
589582 multipart_content_type = multipart_content_type ,
590583 comp = comp ,
591584 version = self ._config .version ,
@@ -622,7 +615,7 @@ async def submit_batch(
622615
623616 return deserialized
624617
625- submit_batch .metadata = {'url' : "{url} /" } # type: ignore
618+ submit_batch .metadata = {'url' : "/" } # type: ignore
626619
627620
628621 @distributed_trace_async
@@ -683,7 +676,6 @@ async def filter_blobs(
683676
684677
685678 request = build_filter_blobs_request (
686- url = self ._config .url ,
687679 comp = comp ,
688680 version = self ._config .version ,
689681 timeout = timeout ,
@@ -721,5 +713,5 @@ async def filter_blobs(
721713
722714 return deserialized
723715
724- filter_blobs .metadata = {'url' : "{url} /" } # type: ignore
716+ filter_blobs .metadata = {'url' : "/" } # type: ignore
725717
0 commit comments