From 2f1385676bcec66720219a71713b33b3ce6e2ef2 Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Sun, 29 Dec 2024 02:13:08 +0800 Subject: [PATCH] :typo: Fix config typo --- pkg/internal/models/destination.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/internal/models/destination.go b/pkg/internal/models/destination.go index e425c14..4d110f2 100644 --- a/pkg/internal/models/destination.go +++ b/pkg/internal/models/destination.go @@ -30,5 +30,5 @@ type S3Destination struct { SecretKey string `json:"secret_key"` AccessBaseURL string `json:"access_baseurl"` EnableSSL bool `json:"enable_ssl"` - EnabledSigned bool `json:"enabled_signed"` + EnabledSigned bool `json:"enable_signed"` }