Skip to content

Commit 2771935

Browse files
committed
Increase frequency for InMemoryMetrics, even 500 made no difference to running tests, all tests call Observe.
1 parent 1c01578 commit 2771935

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Foundatio.TestHarness/Utility/InMemoryMetrics.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public InMemoryMetrics(Func<string, bool> shouldCollect, ILogger logger, int max
100100

101101
_meterListener.Start();
102102

103-
_timer = new Timer(_ => RecordObservableInstruments(), null, TimeSpan.Zero, TimeSpan.FromMilliseconds(50));
103+
_timer = new Timer(_ => RecordObservableInstruments(), null, TimeSpan.Zero, TimeSpan.FromMilliseconds(250));
104104
}
105105

106106
public void RecordObservableInstruments()

0 commit comments

Comments
 (0)