diff --git a/pkg/databricks/client.go b/pkg/databricks/client.go index 82b1c49d..909aca5e 100644 --- a/pkg/databricks/client.go +++ b/pkg/databricks/client.go @@ -595,7 +595,7 @@ func (c *Client) doRequest(ctx context.Context, urlAddress *url.URL, method stri c.auth.Apply(req) resp, err := c.httpClient.Do(req, WithJSONResponse(&response)) if err != nil { - return fmt.Errorf("databricks-connector: error: %s %v", err.Error(), resp.Body) + return fmt.Errorf("databricks-connector: error: %s", err.Error()) } defer resp.Body.Close()