From 35aa2066871404db92521fe18335903da487b8f4 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Mon, 15 Jan 2024 08:09:37 -0500 Subject: [PATCH] fix: use s5 bucket --- protocols/s5/http.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/s5/http.go b/protocols/s5/http.go index ce729fd..577fea8 100644 --- a/protocols/s5/http.go +++ b/protocols/s5/http.go @@ -87,7 +87,7 @@ func (h *HttpHandlerImpl) SmallFileUpload(jc *jape.Context) { }(r.Body) } - hash, err := h.portal.Storage().PutFile(interface{}(buffer).(io.ReadSeeker), "test", false) + hash, err := h.portal.Storage().PutFile(interface{}(buffer).(io.ReadSeeker), "s5", false) if err != nil { _ = jc.Error(errUploadingFileErr, http.StatusInternalServerError)