sprints and audit work
This commit is contained in:
@@ -4,6 +4,7 @@
|
||||
|
||||
using BenchmarkDotNet.Attributes;
|
||||
using BenchmarkDotNet.Engines;
|
||||
using Microsoft.Extensions.Logging.Abstractions;
|
||||
using Microsoft.Extensions.Time.Testing;
|
||||
|
||||
namespace StellaOps.HybridLogicalClock.Benchmarks;
|
||||
@@ -31,7 +32,8 @@ public class ConcurrentHlcBenchmarks
|
||||
_clock = new HybridLogicalClock(
|
||||
_timeProvider,
|
||||
"concurrent-benchmark-node",
|
||||
_stateStore);
|
||||
_stateStore,
|
||||
NullLogger<HybridLogicalClock>.Instance);
|
||||
|
||||
// Initialize the clock
|
||||
_ = _clock.Tick();
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
|
||||
using BenchmarkDotNet.Attributes;
|
||||
using BenchmarkDotNet.Engines;
|
||||
using Microsoft.Extensions.Logging.Abstractions;
|
||||
using Microsoft.Extensions.Time.Testing;
|
||||
|
||||
namespace StellaOps.HybridLogicalClock.Benchmarks;
|
||||
@@ -31,7 +32,8 @@ public class HlcBenchmarks
|
||||
_clock = new HybridLogicalClock(
|
||||
_timeProvider,
|
||||
"benchmark-node-1",
|
||||
_stateStore);
|
||||
_stateStore,
|
||||
NullLogger<HybridLogicalClock>.Instance);
|
||||
|
||||
// Pre-initialize the clock
|
||||
_ = _clock.Tick();
|
||||
|
||||
Reference in New Issue
Block a user