Skip to content

Commit 73ace0a

Browse files
jderussefabpot
authored andcommitted
[HttpClient] Fix decorating progress info in AsyncResponse
1 parent 902e029 commit 73ace0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DependencyInjection/FrameworkExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2097,7 +2097,7 @@ private function registerRetryableHttpClient(array $options, string $name, Conta
20972097

20982098
$container
20992099
->register($name.'.retryable', RetryableHttpClient::class)
2100-
->setDecoratedService($name, null, -10) // lower priority than TraceableHttpClient
2100+
->setDecoratedService($name, null, 10) // higher priority than TraceableHttpClient
21012101
->setArguments([new Reference($name.'.retryable.inner'), $retryStrategy, $options['max_retries'], new Reference('logger')])
21022102
->addTag('monolog.logger', ['channel' => 'http_client']);
21032103
}

0 commit comments

Comments
 (0)