:wave: as of airbyte `v0.40.32` we noticed that al...
# help-connector-development
h
đź‘‹ as of airbyte
v0.40.32
we noticed that all keys in the airbyte record data passed to our destination now comes in as strings. For example for
zendesk_support schedules
, pre
v0.40.32
we see schedules come from
record.data
as (notice that id, start and end time are all ints):
Copy code
{'id': 1260800006989, 'name': 'M-F 9-5pm PT', 'time_zone': 'US', 'created_at': '2021-04-22T00:32:27Z', 'updated_at': '2022-12-31T01:06:17Z', 'intervals': [{'start_time': 1800, 'end_time': 2460}, {'start_time': 3240, 'end_time': 3900}, ...]}
now they come in as strings:
Copy code
{'id': '1260800006989', 'name': 'M-F 9-5pm PT', 'time_zone': 'US', 'created_at': '2021-04-22T00:32:27Z', 'updated_at': '2022-12-31T01:06:17Z', 'intervals': [{'start_time': '1800', 'end_time': '2460'}, {'start_time': '3240', 'end_time': '3900'}, ...]}
It is causing issues in our destination. Is that the expected behavior now? Thanks for the help 🙏
It's a problem in
0.40.31
as well not in
0.40.30
m
Hey Henri! This is a known issue that should have been addressed but there is no releases yet for OSS. I’ll try to find out when we will do this release. We are currently in a “no merge” situation because our team is currently splitting some of our repo stuff so there might be a little bit of delay. In any case, I’ll keep you posted
h
@Maxime Carbonneau-Leclerc (Airbyte) thanks!
m
Hey Henri! There was a new release v0.41.0 yesterday. This should contain the fix you are looking for. Let me know if you still have the issue!
👍 1