File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -158,7 +158,9 @@ def test_log_metrics(
158
158
retention_period = "1 hour" ,
159
159
visibility = visibility ,
160
160
)
161
- run .config (system_metrics_interval = 1 )
161
+ # Will log system metrics on startup, and then not again within timeframe of test
162
+ # So should have exactly one measurement of this
163
+ run .config (system_metrics_interval = 100 )
162
164
return
163
165
164
166
run .init (
@@ -171,8 +173,9 @@ def test_log_metrics(
171
173
visibility = visibility ,
172
174
retention_period = "1 hour" ,
173
175
)
174
- run .config (system_metrics_interval = 1 )
175
-
176
+ # Will log system metrics on startup, and then not again within timeframe of test
177
+ # So should have exactly one measurement of this
178
+ run .config (system_metrics_interval = 100 )
176
179
# Speed up the read rate for this test
177
180
run ._dispatcher ._max_buffer_size = 10
178
181
run ._dispatcher ._max_read_rate *= 10
You can’t perform that action at this time.
0 commit comments