Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
jodydonetti committed Feb 2, 2025
1 parent 7bc6dcb commit c5ad8ff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,8 @@ public async Task BackgroundFactoryCompleteNotifyOtherNodesAsync(SerializerType
// THEIR CACHE ENTRIES
await Task.Delay(simulatedFactoryDuration.PlusALittleBit());

await Task.Delay(MultiNodeOperationsDelay);

// GET THE UPDATED VALUES FROM CACHE-A AND CACHE-B
var fooA3 = await cacheA.GetOrDefaultAsync<int>("foo");
var fooB3 = await cacheB.GetOrDefaultAsync<int>("foo");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,8 @@ public void BackgroundFactoryCompleteNotifyOtherNodes(SerializerType serializerT
// THEIR CACHE ENTRIES
Thread.Sleep(simulatedFactoryDuration.PlusALittleBit());

Thread.Sleep(MultiNodeOperationsDelay);

// GET THE UPDATED VALUES FROM CACHE-A AND CACHE-B
var fooA3 = cacheA.GetOrDefault<int>("foo");
var fooB3 = cacheB.GetOrDefault<int>("foo");
Expand Down

0 comments on commit c5ad8ff

Please sign in to comment.