more limits.Agent elaboration (#271)

This commit is contained in:
Michael Quigley
2023-03-17 13:13:33 -04:00
parent b69237e9cc
commit 9418195150
4 changed files with 58 additions and 6 deletions

View File

@@ -8,6 +8,7 @@ type Config struct {
Environments int
Shares int
Bandwidth *BandwidthConfig
Cycle time.Duration
Enforcing bool
}
@@ -74,5 +75,7 @@ func DefaultConfig() *Config {
},
},
},
Enforcing: false,
Cycle: 15 * time.Minute,
}
}