Skip to content

Commit

Permalink
Removed cacert from excludes, apparently we need that
Browse files Browse the repository at this point in the history
  • Loading branch information
Rich Jones committed Jul 30, 2016
1 parent 672d85f commit 96fe029
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ to change Zappa's behavior. Use these at your own risk!
"function": "your_module.your_function", // The function to execute
"expression": "rate(1 minute)" // When to execute it (in cron or rate format)
}],
"exclude": ["*.gz", "*.pem"], // A list of regex patterns to exclude from the archive
"exclude": ["*.gz", "*.rar"], // A list of regex patterns to exclude from the archive
"http_methods": ["GET", "POST"], // HTTP Methods to route,
"integration_response_codes": [200, 301, 404, 500], // Integration response status codes to route
"keep_warm": true, // Create CloudWatch events to keep the server warm.
Expand Down
2 changes: 1 addition & 1 deletion zappa/zappa.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
API_GATEWAY_REGIONS = ['us-east-1', 'us-west-2', 'eu-west-1', 'eu-central-1', 'ap-northeast-1', 'ap-southeast-2']
LAMBDA_REGIONS = ['us-east-1', 'us-west-2', 'eu-west-1', 'eu-central-1', 'ap-northeast-1', 'ap-southeast-2']

ZIP_EXCLUDES = ['*.exe', '*.DS_Store', '*.Python', '*.git', '.git/*', '*.zip', '*.tar.gz', '*.hg', '*.egg-info', 'botocore*', 'pip*', 'docutils*', 'boto3*', 'setuputils*', '*.dist-info', 'cacert.pem']
ZIP_EXCLUDES = ['*.exe', '*.DS_Store', '*.Python', '*.git', '.git/*', '*.zip', '*.tar.gz', '*.hg', '*.egg-info', 'botocore*', 'pip*', 'docutils*', 'boto3*', 'setuputils*', '*.dist-info']

##
# Classes
Expand Down

0 comments on commit 96fe029

Please sign in to comment.