We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2889865 commit 4c712aeCopy full SHA for 4c712ae
pynamodb/connection/base.py
@@ -526,6 +526,7 @@ def client(self):
526
# otherwise the client is permanently poisoned in the case of metadata service flakiness when using IAM roles
527
if not self._client or (self._client._request_signer and not self._client._request_signer._credentials):
528
config = botocore.client.Config(
529
+ parameter_validation=False, # Disable unnecessary validation for performance
530
connect_timeout=self._connect_timeout_seconds,
531
read_timeout=self._read_timeout_seconds,
532
max_pool_connections=self._max_pool_connections)
0 commit comments