sprints and audit work

This commit is contained in:
StellaOps Bot
2026-01-07 09:36:16 +02:00
parent 05833e0af2
commit ab364c6032
377 changed files with 64534 additions and 1627 deletions

View File

@@ -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();

View File

@@ -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();