You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While I'm trying to overcome the 64KiB limit based on the discussion at reactphp/http#412 I found out that this is not possible with the current Middleware implementation by framework-x.
Framework X bypasses the default ReactPHP HttpServer Middleware handling code by creating it's own MiddlewareHandler and only pass a closure to the HttpServer. The HttpServer tries to detect the StreamingRequestMiddleware so it's disabling it's default "Limiting Middlewares", which of course is not possible because only a closure with it's own MiddlewareHandler is provided.
Any idea how to solve this issue?
The text was updated successfully, but these errors were encountered:
While I'm trying to overcome the 64KiB limit based on the discussion at reactphp/http#412 I found out that this is not possible with the current Middleware implementation by framework-x.
Framework X bypasses the default ReactPHP
HttpServer
Middleware handling code by creating it's ownMiddlewareHandler
and only pass a closure to theHttpServer
. TheHttpServer
tries to detect theStreamingRequestMiddleware
so it's disabling it's default "Limiting Middlewares", which of course is not possible because only a closure with it's ownMiddlewareHandler
is provided.Any idea how to solve this issue?
The text was updated successfully, but these errors were encountered: