diff --git a/src/HttpClient/HttpClient.php b/src/HttpClient/HttpClient.php index 8a1ccb2..c89f2af 100644 --- a/src/HttpClient/HttpClient.php +++ b/src/HttpClient/HttpClient.php @@ -52,7 +52,7 @@ public function sendRequest(Request $request, Options $options): Response $chan = $this->chan; $chan->push(fn () => parent::sendRequest($request, $options)); - return new Response(202, [], 'Waiting for sendRequest'); + return new Response(202, ['X-Sentry-Request-Status' => ['Queued']], ''); } public function close(): void