| Index: third_party/boto/boto/dynamodb2/fields.py
|
| ===================================================================
|
| --- third_party/boto/boto/dynamodb2/fields.py (revision 33376)
|
| +++ third_party/boto/boto/dynamodb2/fields.py (working copy)
|
| @@ -323,7 +323,10 @@
|
| projection_type = 'INCLUDE'
|
|
|
| def __init__(self, *args, **kwargs):
|
| + throughput = kwargs.pop('throughput', None)
|
| IncludeIndex.__init__(self, *args, **kwargs)
|
| + if throughput:
|
| + kwargs['throughput'] = throughput
|
| GlobalBaseIndexField.__init__(self, *args, **kwargs)
|
|
|
| def schema(self):
|
| @@ -331,4 +334,4 @@
|
| schema_data = IncludeIndex.schema(self)
|
| # Also the throughput.
|
| schema_data.update(GlobalBaseIndexField.schema(self))
|
| - return schema_data
|
| + return schema_data
|
|
|