From 6ecaab322331bb4101d9a9bf20c86d642f263bb4 Mon Sep 17 00:00:00 2001 From: Allison Doami Date: Mon, 3 Feb 2025 12:20:36 -0800 Subject: [PATCH] fix: request sent to dbx --- backend/main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/main.go b/backend/main.go index 505749b..082a6ee 100644 --- a/backend/main.go +++ b/backend/main.go @@ -127,6 +127,7 @@ func queryDatabricksForRecipient(email string) (bool, error) { return false, fmt.Errorf("error creating request: %w", err) } req.Header.Set("Authorization", "Bearer "+databricksPAT) + fmt.Println("Request: ", req) client := &http.Client{} resp, err := client.Do(req)