Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
TalZaccai committed Mar 5, 2025
1 parent db7e587 commit 8b3e300
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/host/GarnetServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ private TsavoriteKV<SpanByte, SpanByte, MainStoreFunctions, MainStoreAllocator>
{
kvSettings = opts.GetSettings(loggerFactory, out logFactory);

checkpointDir = opts.CheckpointDir ?? opts.LogDir;
checkpointDir = (opts.CheckpointDir ?? opts.LogDir) ?? string.Empty;

// Run checkpoint on its own thread to control p99
kvSettings.ThrottleCheckpointFlushDelayMs = opts.CheckpointThrottleFlushDelayMs;
Expand Down

0 comments on commit 8b3e300

Please sign in to comment.