From 9552131a2a2153dc43530f15ca003332dc351a43 Mon Sep 17 00:00:00 2001 From: Shreyas Goenka Date: Thu, 2 Jan 2025 18:11:35 +0530 Subject: [PATCH] lint --- libs/filer/dbfs_client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/filer/dbfs_client.go b/libs/filer/dbfs_client.go index 88e17b8ae..c90814aa0 100644 --- a/libs/filer/dbfs_client.go +++ b/libs/filer/dbfs_client.go @@ -102,7 +102,7 @@ func NewDbfsClient(w *databricks.WorkspaceClient, root string) (Filer, error) { // The PUT API for DBFS requires setting the content length header beforehand in the HTTP // request. -func putContentLength(path string, overwriteField string, file *os.File) (int64, error) { +func putContentLength(path, overwriteField string, file *os.File) (int64, error) { buf := &bytes.Buffer{} writer := multipart.NewWriter(buf) err := writer.WriteField("path", path)