Skip to content

Commit

Permalink
Increase CPU limits for some stability tests (#398)
Browse files Browse the repository at this point in the history
Bump CPU limits for SAPM traces and OC metrics stability tests to align with the unstable CircleCI environment and avoid sporadic stability tests failures like these: open-telemetry#369 , open-telemetry#354
  • Loading branch information
dmitryax authored and wyTrivail committed Jul 13, 2020
1 parent 4a3706c commit be87080
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion testbed/stabilitytests/metric_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func TestStabilityMetricsOpenCensus(t *testing.T) {
testbed.NewOCMetricDataSender(testbed.DefaultHost, testbed.GetAvailablePort(t)),
testbed.NewOCDataReceiver(testbed.GetAvailablePort(t)),
testbed.ResourceSpec{
ExpectedMaxCPU: 45,
ExpectedMaxCPU: 50,
ExpectedMaxRAM: 86,
ResourceCheckPeriod: resourceCheckPeriod,
},
Expand Down
2 changes: 1 addition & 1 deletion testbed/stabilitytests/trace_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func TestStabilityTracesSAPM(t *testing.T) {
datasenders.NewSapmDataSender(testbed.GetAvailablePort(t)),
datareceivers.NewSapmDataReceiver(testbed.GetAvailablePort(t)),
testbed.ResourceSpec{
ExpectedMaxCPU: 24,
ExpectedMaxCPU: 28,
ExpectedMaxRAM: 100,
ResourceCheckPeriod: resourceCheckPeriod,
},
Expand Down

0 comments on commit be87080

Please sign in to comment.