We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7abeb19 commit ff2c3d3Copy full SHA for ff2c3d3
botocore/data/_retry.json
@@ -134,6 +134,14 @@
134
"growth_factor": 2
135
},
136
"policies": {
137
+ "write_conflict": {
138
+ "applies_when": {
139
+ "response": {
140
+ "service_error_code": "ReplicatedWriteConflictException",
141
+ "http_status_code": 409
142
+ }
143
144
+ },
145
"still_processing": {
146
"applies_when": {
147
"response": {
debug.py
@@ -0,0 +1,6 @@
1
+import boto3
2
+boto3.set_stream_logger('')
3
+
4
5
+ddb = boto3.client('dynamodb')
6
+ddb.describe_table(TableName='test-table')
0 commit comments