From 437c108696cedf14065ad931d51dfb73ac158fe7 Mon Sep 17 00:00:00 2001 From: Jono Wenger <jono@elixxir.io> Date: Tue, 31 May 2022 10:58:13 -0700 Subject: [PATCH] Update default max throughput for file transfer CLI to 1000 (max throughput that works in local integration) --- cmd/fileTransfer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/fileTransfer.go b/cmd/fileTransfer.go index b04f91ebe..f09380f10 100644 --- a/cmd/fileTransfer.go +++ b/cmd/fileTransfer.go @@ -369,7 +369,7 @@ func init() { "File preview data. Set either this flag or filePreviewPath.") bindPFlagCheckErr("filePreviewString") - ftCmd.Flags().Int("maxThroughput", 0, + ftCmd.Flags().Int("maxThroughput", 1000, "Maximum data transfer speed to send file parts (in bytes per second)") bindPFlagCheckErr("maxThroughput") -- GitLab