Tim Enders
10/24/2022, 6:52 PMif __name__ == "__main__":
try:
flow_result = main()
except Exception as e:
slack_webhook_block = SlackWebhook.load("data-pipeline-notifications")
slack_webhook_block.notify(f"{e.__class__}: {str(e)}")
Andrew Huang
10/24/2022, 10:01 PM