We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 168efcc commit 38979deCopy full SHA for 38979de
2 files changed
DynamoDbEncryption/runtimes/python/src/aws_dbesdk_dynamodb/encrypted/table.py
@@ -364,6 +364,9 @@ def _table_operation_logic(
364
# Copy any missing fields from the SDK output to the response (e.g. `ConsumedCapacity`)
365
dbesdk_response = self._copy_sdk_response_to_dbesdk_response(sdk_output, dbesdk_response)
366
367
+ # Clean up the expression builder for the next operation
368
+ self._resource_shape_to_client_shape_converter.expression_builder.reset()
369
+
370
return dbesdk_response
371
372
@property
TestVectors/runtimes/python/test/__init__.py
@@ -1,2 +1,3 @@
1
# Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
2
# SPDX-License-Identifier: Apache-2.0
3
+"""Stub to allow relative imports of examples from tests."""
0 commit comments