Skip to content
This repository was archived by the owner on Aug 26, 2020. It is now read-only.

Commit 0411285

Browse files
authored
remove request size limit correctly (#121)
1 parent 55821e0 commit 0411285

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
CHANGELOG
33
=========
44

5+
1.0.9
6+
=====
7+
8+
* bug-fix: remove request size limit correctly
9+
510
1.0.8
611
=====
712

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def read(fname):
1414

1515
setup(
1616
name='sagemaker_container_support',
17-
version='1.0.8',
17+
version='1.0.9',
1818
description='Open source library for creating containers to run on Amazon SageMaker.',
1919

2020
packages=[PKG_NAME],

src/container_support/etc/nginx.conf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ http {
2020

2121
server {
2222
listen 8080 deferred;
23+
client_max_body_size 0;
2324

2425
keepalive_timeout 3;
2526

0 commit comments

Comments
 (0)