You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The check() method in Airbyte's connector fails to validate configurations with API key-based authentication, triggering an AirbyteConnectorCheckFailedError. Logs reveal an underlying AttributeError in source_mailchimp, where an AirbyteMessage object lacks the json attribute.
I'm using the open-source airbyte versión 0.19.1 (with pip install airbyte).
"error":{"message":"Something went wrong in the connector. See the logs for more details.","internal_message":"'AirbyteMessage' object has no attribute 'json'"
AirbyteConnectorCheckFailedError
Cell In[4], line 13
4 config = {
5 "credentials" : {
6 "auth_type": "apikey",
(...)
9
10 }
12 source.set_config(config=config)
---> 13 source.check()
15 #print(source._discover())
File ~/Documents/git/connectors/airbyte-mailchimp/lib/python3.10/site-packages/airbyte/_connector_base.py:336, in ConnectorBase.check(self)
330 raise exc.AirbyteConnectorCheckFailedError(
331 connector_name=self.name,
332 message="The connector `check` operation did not return a status.",
333 log_text=self._last_log_messages,
334 )
335 except exc.AirbyteConnectorFailedError as ex:
--> 336 raise exc.AirbyteConnectorCheckFailedError(
337 connector_name=self.name,
338 original_exception=ex,
339 ) from None
...
Contribute
Yes, I want to contribute
The text was updated successfully, but these errors were encountered:
MauPerez
changed the title
'AirbyteMessage' object has no attribute 'json' during API Key Config Setup in PyAirbyte
[source-mailchimp] AirbyteMessage object has no attribute 'json' during API Key Config Setup in PyAirbyte
Nov 7, 2024
Connector Name
source-mailchimp
Connector Version
1.0.0
What step the error happened?
Configuring a new connector
Relevant information
The check() method in Airbyte's connector fails to validate configurations with API key-based authentication, triggering an
AirbyteConnectorCheckFailedError
. Logs reveal an underlyingAttributeError
insource_mailchimp
, where anAirbyteMessage
object lacks the json attribute.I'm using the open-source airbyte versión 0.19.1 (with pip install airbyte).
Relevant log output
Contribute
The text was updated successfully, but these errors were encountered: