good morning !, im trying to appy all, the connect...
# help-api-cli-orchestration
c
good morning !, im trying to appy all, the connections, sources, and destinations, when I run octavia apply, the sources and destinations works, but te connection between them fails:
Copy code
irbyte_api_client.exceptions.ApiTypeError: Invalid type for variable 'non_breaking_changes_preference'. Required value type is NonBreakingChangesPreference and passed type was str at ['non_breaking_changes_preference']
I'm using octavia-cli 0.40.32 and Aribyte 0.40.32
d
Hi! Just ignoring that field fix the issue, I don’t know if the Airbyte team has other suggestions about it. I’ve already met this issue and removing the field was the only solution
c
Hey @dandpz, you edited the code ?
where you removed the filed ?¡
d
I removed it from the connection configuration yaml file, before run apply command
c
yes, it's works, I added a # comment in the line geography and non_breaking and works
one liner replacement
find . -name configuration.yaml -exec perl -i -p -e "s/non_breaking_changes_preference/#non_breaking_changes_preference/g" {} \;