diff options
| author | ARibster <caialjf@yahoo.com> | 2025-05-01 22:09:47 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-01 13:09:47 -0700 |
| commit | d424cbbcd5d284d7a1a6e2c671da29ca12a592c3 (patch) | |
| tree | a95f2601a5c5e0c5e7f139e402ebce76e13fb244 /weed/command/filer.go | |
| parent | 71382d32798120acb42730f5bb4435ad4be8f9f5 (diff) | |
| download | seaweedfs-d424cbbcd5d284d7a1a6e2c671da29ca12a592c3.tar.xz seaweedfs-d424cbbcd5d284d7a1a6e2c671da29ca12a592c3.zip | |
fix: S3 Feature: please add s3.idleTimeout command line parameter #6746 (#6747)
ildeTimeout command line parameter for s3
Diffstat (limited to 'weed/command/filer.go')
| -rw-r--r-- | weed/command/filer.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/weed/command/filer.go b/weed/command/filer.go index 55ea1169d..a6b5d57ca 100644 --- a/weed/command/filer.go +++ b/weed/command/filer.go @@ -121,6 +121,7 @@ func init() { filerS3Options.localSocket = cmdFiler.Flag.String("s3.localSocket", "", "default to /tmp/seaweedfs-s3-<port>.sock") filerS3Options.tlsCACertificate = cmdFiler.Flag.String("s3.cacert.file", "", "path to the TLS CA certificate file") filerS3Options.tlsVerifyClientCert = cmdFiler.Flag.Bool("s3.tlsVerifyClientCert", false, "whether to verify the client's certificate") + filerS3Options.idleTimeout = cmdFiler.Flag.Int("s3.idleTimeout", 10, "connection idle seconds") // start webdav on filer filerStartWebDav = cmdFiler.Flag.Bool("webdav", false, "whether to start webdav gateway") |
