Hi all, I'm wondering how I can change the domain ...
# troubleshooting
d
Hi all, I'm wondering how I can change the domain in the body of the webhook notification. In the message below, I would like to change localhost:8000 to the public address where airbyte is being hosted. It doesn't appear that this is an option in the interface, i there a configuration file somewhere where this can be changed?
Your connection from Okta version 0.1.4 to BigQuery version 0.6.7 succeeded
This was for sync started on Friday, February 18, 2022 at 10308 PM Coordinated Universal Time, running for 8 minutes 29 seconds.
You can access its logs here: http://localhost:8000/connections/792cdbca-8f3f-446f-ac8c-bd4d94e5285d
m
oh, I think the notification system use the internal deployment to map the host address. So, it’s a limitation today. @David Hadaller do you mind creating a Github issue requesting this?
o
@Marcos Marx (Airbyte) Sure, I can make an issue no problem
a
As it sends a POST request to the webhook and it conveys for both success and failure jobs, we can redirect the response of
/api/v1/jobs/get
for respective jobid?it contains success/failure and meta data details around the data being synced we could avoid the huge log lines from the response. Users can consume the necessary data based on their requirements. it could help users of airbyte to keep track of the jobs details being run easily. Otherwise we have to periodically poll for specific jobid with the hope that it is complete and then gather the details. what do you guys say?@[DEPRECATED] Marcos Marx @David Hadaller?