Skip to content

Commit

Permalink
add gcs egress defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
zachcheu committed Oct 5, 2024
1 parent 1a4993f commit d769990
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/backend/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ type Config struct {
func (c Config) applyDefaults() Config {
for k := range c.Backend {
// TODO: don't hard code backend client name
if k == "s3" {
if k == "s3" || k == "gcs"{
if c.Bandwidth.IngressBitsPerSec == 0 {
c.Bandwidth.IngressBitsPerSec = 10 * 8 * memsize.Gbit
}
Expand Down

0 comments on commit d769990

Please sign in to comment.