Jeff Kehler
05/11/2022, 3:09 AM--expose
and connecting to the UI using the server IP address on port 8080
. All that works fine, however I noticed that the url in Slack notifications are using <http://localhost:4200>
. How can I configure this part?Visit <http://localhost:8080> to get started
. So why does the Slack url differ in port?message_link = (
f"{server_config.api.url}/{event.tenant.slug}/flow-run/{event.flow_run.id}"
)
I guess my question is why is it using the API url instead of the UI url? Since the link should be to the web UI not to the API.Kevin Kho
Jeff Kehler
05/11/2022, 5:42 AMLink
doesn't actually link to the Web UI. Since the Web UI is hosted on port 8080. Port 4200 is for the API. Also the link should not be localhost
but rather the server IP.Anna Geller
Jeff Kehler
05/12/2022, 3:23 AMAnna Geller