Vitalie CALMÎC
08/12/2022, 7:40 AMshould_retry function: tokens: Tuple[str, int] = _self_.authenticator.refresh_access_token(), but it fails with the following error:
File "/usr/local/lib/python3.9/site-packages/airbyte_cdk/sources/streams/http/http.py", line 294, in _send
if self.should_retry(response):
File "/airbyte/integration_code/source_amazon_ads/streams/common.py", line 292, in should_retry
tokens: Tuple[str, int] = self.authenticator.refresh_access_token()
AttributeError: 'NoAuth' object has no attribute 'refresh_access_token'
I do not uderstand why the authenticator property is of type NoAuth, because when I initialize the stream in source, I pass the Oauth authenticator. Could someone help or point into the right direction?