TypeError: _convert_to_request_dict() missing 1 required positional argument 'endpoint_url' #3483
-
We have a python code which installs the latest version of libraries(boto3 etc) and the code gets executed **The Latest version definition is as follows(botocore 1.28.3 ) ** |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @Lavanya1910, The method Could you please provide more details on where the newly failing call to |
Beta Was this translation helpful? Give feedback.
Hi @Lavanya1910,
The method
_convert_to_request_dict
(code link) you mention is an internal private method of the classbotocore.client.BaseClient
in the botocore library. "Private method" here is in the Python sense where no method is truly private, but the leading_
signals that the method should not be called or imported externally. botocore provides the low-level interface to AWS services. boto3 depends on botocore.Could you please provide more details on where the newly failing call to
_convert_to_request_dict()
is located? Theendpoint_url
argument has indeed been added in version 1.28.0 of botocore, but all internal references were changed accordingly. boto3 does not call_convert…