Commit 9c6566bc by Dave Syer

Explicitly allow all HTTP methods in ZuulController

parent 45420b96
...@@ -16,6 +16,7 @@ public class ZuulController extends ServletWrappingController { ...@@ -16,6 +16,7 @@ public class ZuulController extends ServletWrappingController {
public ZuulController() { public ZuulController() {
setServletClass(ZuulServlet.class); setServletClass(ZuulServlet.class);
setServletName("zuul"); setServletName("zuul");
setSupportedMethods((String[])null); // Allow all
} }
@Override @Override
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment