"\tat java.base/java.lang.Thread.run(Thread.java:1...
# ask-ai
e
"\tat java.base/java.lang.Thread.run(Thread.java:1583)", "Caused by: com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field \"codename\" (class io.airbyte.api.model.generated.EnterpriseSourceStub), not marked as ignorable (6 known properties: \"label\", \"icon\", \"type\", \"id\", \"url\", \"name\"])", " at [Source: REDACTED (
StreamReadFeature.INCLUDE_SOURCE_IN_LOCATION
disabled); line: 9, column: 18] (through reference chain: java.util.ArrayList[0]->io.airbyte.api.model.generated.EnterpriseSourceStub[\"codename\"])", "\tat com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException.from(UnrecognizedPropertyException.java:61)", "\tat com.fasterxml.jackson.databind.DeserializationContext.handleUnknownProperty(DeserializationContext.java:1153)", "\tat com.fasterxml.jackson.databind.deser.std.StdDeserializer.handleUnknownProperty(StdDeserializer.java:2241)", "\tat com.fasterxml.jackson.databind.deser.BeanDeserializerBase.handleUnknownProperty(BeanDeserializerBase.java:1793)", "\tat com.fasterxml.jackson.databind.deser.BeanDeserializerBase.handleUnknownVanilla(BeanDeserializerBase.java:1771)", "\tat com.fasterxml.jackson.databind.deser.BeanDeserializer.vanillaDeserialize(BeanDeserializer.java:316)", "\tat com.fasterxml.jackson.databind.deser.BeanDeserializer.deserialize(BeanDeserializer.java:177)", "\tat com.fasterxml.jackson.databind.deser.std.CollectionDeserializer._deserializeFromArray(CollectionDeserializer.java:361)", "\tat com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(CollectionDeserializer.java:246)", "\tat com.fasterxml.jackson.databind.deser.std.CollectionDeserializer.deserialize(CollectionDeserializer.java:30)", "\tat com.fasterxml.jackson.databind.deser.DefaultDeserializationContext.readRootValue(DefaultDeserializationContext.java:342)", "\tat com.fasterxml.jackson.databind.ObjectMapper._readMapAndClose(ObjectMapper.java:4905)", "\tat com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:3848)", "\tat com.fasterxml.jackson.databind.ObjectMapper.readValue(ObjectMapper.java:3831)", "\tat io.airbyte.commons.server.handlers.EnterpriseSourceStubsHandler.listEnterpriseSourceStubs(EnterpriseSourceStubsHandler.kt:46)", "\t... 14 more" ] }
k
Based on the error message provided, it appears that there's an issue with deserializing JSON data in Airbyte. The error is specifically related to an unrecognized field "codename" in the EnterpriseSourceStub class. This type of error typically occurs when the JSON data being parsed contains fields that are not defined in the corresponding Java class. The error message suggests that the EnterpriseSourceStub class has 6 known properties: "label", "icon", "type", "id", "url", and "name". However, the JSON data being parsed includes an additional field "codename" which is not recognized. This issue could be related to a mismatch between the API response and the expected data structure in Airbyte. It's possible that there have been changes in the API response that haven't been reflected in Airbyte's data models. Unfortunately, the provided knowledge sources don't contain specific information about this particular error or how to resolve it. However, based on similar issues, here are a few general suggestions: 1. Check if there have been any recent updates to the Airbyte version or the source connector that might have introduced this incompatibility. 2. Verify that the API you're connecting to hasn't changed its response structure recently. 3. If you're using a custom connector or have made modifications to an existing one, ensure that the EnterpriseSourceStub class is correctly defined to match the expected JSON structure. 4. Consider updating to the latest version of Airbyte and the relevant connectors, as the issue might have been addressed in a newer release. 5. If the problem persists, you may need to report this as an issue to the Airbyte team for further investigation. For more detailed troubleshooting or to report this issue, you can refer to the [Airbyte GitHub repository](https://github.com/airbytehq/airbyte) where similar issues are discussed and resolved.