Skip to content
This repository was archived by the owner on Aug 26, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
CHANGELOG
=========

1.0.9
=====

* bug-fix: remove request size limit correctly

1.0.8
=====

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def read(fname):

setup(
name='sagemaker_container_support',
version='1.0.8',
version='1.0.9',
description='Open source library for creating containers to run on Amazon SageMaker.',

packages=[PKG_NAME],
Expand Down
1 change: 1 addition & 0 deletions src/container_support/etc/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ http {

server {
listen 8080 deferred;
client_max_body_size 0;

keepalive_timeout 3;

Expand Down