Bogdan Kulbida
Bogdan Kulbida
I'm having the same crash here...
2015-04-13 02:39:15 +0000] [1] [INFO] Starting gunicorn 19.1.1 [2015-04-13 02:39:15 +0000] [1] [INFO] Listening at: http://0.0.0.0:5000 (1) [2015-04-13 02:39:15 +0000] [1] [INFO] Using worker: gevent [2015-04-13 02:39:15 +0000] [12] [INFO]...
Used `-e GUNICORN_OPTS=["--preload"]` as a temp workaround...
I am having the same issue with `KeyConditionExpression` for `query` and `paginator` ``` dynamodb = boto3.client('dynamodb', . . . ) items = dynamodb.query(TableName='test', KeyConditionExpression=Key('user_email').eq('[email protected]')) ``` using `paginator`: ``` paginator =...