# HG changeset patch # User Maxim Dounin # Date 1232931177 -10800 # Node ID 53eff3a83886f516e079033ae5156a5caaad656b # Parent 9a5fab7c0dec0df3addc30896e5f05455c103eae Tests: fix expect-100-continue for 0.7.31. In nginx 0.7.31 processing of "Expect" header only happens while actually reading request body. Add proxy_pass as it always reads request body. diff --git a/expect-100-continue.t b/expect-100-continue.t --- a/expect-100-continue.t +++ b/expect-100-continue.t @@ -43,6 +43,11 @@ http { server { listen 127.0.0.1:8080; server_name localhost; + location / { + proxy_pass http://localhost:8080/local; + } + location /local { + } } }