You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use the docker command provided in the Readme. I keep getting the following error:
Traceback (most recent call last):
File "dynamodb-copy-table.py", line 22, in <module>
ddbc = DynamoDBConnection()
File "/usr/local/lib/python3.6/site-packages/boto/dynamodb2/layer1.py", line 173, in __init__
kwargs['host'] = region.endpoint
AttributeError: 'NoneType' object has no attribute 'endpoint'
I have initialized all the required environment variables.
The text was updated successfully, but these errors were encountered:
Changed this ( line 19 - 23 ) if it can help someone else !
host = 'dynamodb.%s.amazonaws.com' % region
ddbc = DynamoDBConnection(is_secure=False, region=region, host=host)
# Setting the default region name for the connection.
# DynamoDBConnection.DefaultRegionName = region
# ddbc = DynamoDBConnection()
I use the docker command provided in the Readme. I keep getting the following error:
I have initialized all the required environment variables.
The text was updated successfully, but these errors were encountered: