Hey team, I am trying to make a simple change in a...
# ask-community-for-troubleshooting
a
Hey team, I am trying to make a simple change in airbyte-integrations (specifically changing the Debezium 5 min wait time to 1 min). What steps would I need to take for my local
docker-compose
to pick this change up? I did go through developing-locally but unsure where I need to edit/add these lines?
Copy code
SUB_BUILD=PLATFORM ./gradlew build
VERSION=dev docker-compose up
m
you need to build the connector locally,
./gradlew airbyte-integrations:connectors:source-name:build
after you need to change the version to
dev
in the UI
a
Thanks Marcos, I built the connectors locally (using postgres)
Copy code
./gradlew airbyte-integrations:bases:debezium:build
./gradlew airbyte-integrations:bases:base-normalization:build
./gradlew airbyte-integrations:connectors:destination-postgres:build
./gradlew airbyte-integrations:connectors:source-postgres:build
followed by
Copy code
VERSION=dev docker-compose up
but it doesn’t seem to have changed the wait time. Also, if I wanted to build everything in
airbyte-integrations
how would I go about it? I’m asking as I’d also like to make a change in one of the normalization python files (stream_processor.py). Rebuilding
bases:base-normalization
had no luck.
Would love to get any suggestions around this.
m
did you change the version to dev in the web interface?
image.png
a
Ah, setting it to dev worked, Thanks Marcos! 🙂