fix ::toStream() in ZTS
[m6w6/ext-http] / tests / helper / proxy.inc
index 61b20dd1c1b38e3a26190d5d401216387991bc07..363d76f4b88be43a61ff0649caafa0c98d5e9a04 100644 (file)
@@ -16,6 +16,7 @@ serve(function($client) {
        
        /* return the initial message as response body */
        $response = new http\Env\Response;
-       $response->getBody()->append($request);
+       /* avoid OOM with $response->getBody()->append($request); */
+       $request->toStream($response->getBody()->getResource());
        $response->send($client);
 });