We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 534e8a3 commit 3a65aabCopy full SHA for 3a65aab
test/types/config.go
@@ -29,7 +29,8 @@ const (
29
commonRandomizationFactor = 0.1
30
commonMultiplier = 0.2
31
32
- reloadMonitoringPeriod = 400 * time.Millisecond
+ maxParallelFileOperations = 5
33
+ reloadMonitoringPeriod = 400 * time.Millisecond
34
)
35
36
// Produces a populated Agent Config for testing usage.
@@ -53,7 +54,7 @@ func AgentConfig() *config.Config {
53
54
MaxMessageSendSize: 1,
55
MaxFileSize: 1,
56
FileChunkSize: 1,
- MaxParallelFileOperations: 5,
57
+ MaxParallelFileOperations: maxParallelFileOperations,
58
},
59
Backoff: &config.BackOff{
60
InitialInterval: commonInitialInterval,
0 commit comments