Skip to content

Commit

Permalink
change default FTP config
Browse files Browse the repository at this point in the history
  • Loading branch information
Slach committed Feb 12, 2024
1 parent 7d5a4d4 commit 4aff436
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -583,15 +583,15 @@ func DefaultConfig() *Config {
},
FTP: FTPConfig{
Timeout: "2m",
Concurrency: downloadConcurrency + 1,
Concurrency: downloadConcurrency * 2,
CompressionFormat: "tar",
CompressionLevel: 1,
},
SFTP: SFTPConfig{
Port: 22,
CompressionFormat: "tar",
CompressionLevel: 1,
Concurrency: int(downloadConcurrency + 1),
Concurrency: int(downloadConcurrency * 2),
},
Custom: CustomConfig{
CommandTimeout: "4h",
Expand Down

0 comments on commit 4aff436

Please sign in to comment.