With groups, projects, branches, and project_members in the select part of meltano.yml, everything seems to work fine. But when I add merge_requests or pipelines fields, an error returns on some projects.
Here's a clip from meltano.yml:
- merge_requests.title
- pipelines.status
Here's a clip from the output with the error message:
I can see in REQUESTS (the "catalog"?) that merge_requests and pipelines contain this line:
'replication_keys': ['updated_at'],
... which makes sense to me, and I expect it explains why the tap is querying for those values anyway. But why the failure? When I try one of the queries in Postman, the records all seem to return values for updated_at:
With
groups
,projects
,branches
, andproject_members
in theselect
part ofmeltano.yml
, everything seems to work fine. But when I addmerge_requests
orpipelines
fields, an error returns on some projects.Here's a clip from
meltano.yml
:Here's a clip from the output with the error message:
I can see in REQUESTS (the "catalog"?) that
merge_requests
andpipelines
contain this line:... which makes sense to me, and I expect it explains why the tap is querying for those values anyway. But why the failure? When I try one of the queries in Postman, the records all seem to return values for
updated_at
:Here's the query:
The response includes:
... which looks like a valid ISO date to me.
With apologies if this belongs in Slack or reflects (newbie) user error, is there a bug here?