-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error on replicating issue_events table in StitchData with error "Errors during transform" #95
Comments
The problem is that the validation is not currently expecting description to ever be filled out on an issue label: tap-github/tap_github/schemas/issue_events.json Lines 457 to 461 in 7ff6a34
A possible workaround would be to remove the descriptions from your issue labels - I'll put up a PR with what I believe is the fix momentarily though. |
@jcw- Any progress on this issue? |
@tinydylan I submitted the fix and requested a review 45 days ago. I've had zero feedback or response to it. Or to my other fix I submitted.
|
@tomasrasymas @jcw- I'm working to merge #102 to fix this soon |
* fix issue events schema Some of the properties were marked as "null" type. Change them to nullable string type. * fix milestone property Closes singer-io#95, singer-io#97
I am using https://app.stitchdata.com/ to replicate github data from github to bigquery, for now I was replicating only
issues
table, today I addedissue_events
table and now replication process finishes with an errorErrors during transform
. Log informationAs I can see integration is expecting
'description': {'type': ['null']}
but getting'description': 'Issue xxx'
.What might be the fix for that?
The text was updated successfully, but these errors were encountered: