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
People tend to think the limit specified by body_max_count is the maximum that is allowed. But one cannot actually achieve that number. For example, if we have
body_max_count 3;
then only 2 query args are accepted. It makes sense to accept 3 args but reject more. The following patch fixes this:
Sorry, Test::Nginx::Socket has just caught the real issue here, your current implementation does not quit the main request processing flow properly (calling ngx_http_finalize_request is not the right thing to do in the post_read handler).
Below is my patch for your module that makes this module pass my tests with Test::Nginx::Socket + mockeagain + etcproxy + valgrind:
People tend to think the limit specified by body_max_count is the maximum that is allowed. But one cannot actually achieve that number. For example, if we have
then only 2 query args are accepted. It makes sense to accept 3 args but reject more. The following patch fixes this:
The text was updated successfully, but these errors were encountered: