Disable strict_slashes for Flask so that S3 works in server mode.

This commit is contained in:
Steve Pulec 2016-12-03 18:59:28 -05:00
commit 2c6a967f45
2 changed files with 2 additions and 3 deletions

View file

@ -113,6 +113,7 @@ def create_backend_app(service):
endpoint=endpoint,
methods=HTTP_METHODS,
view_func=convert_flask_to_httpretty_response(handler),
strict_slashes=False,
)
backend_app.test_client_class = AWSTestHelper