Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 96260e0

Browse files
committed
move typeIds set operation to outerloop
1 parent 8feb80e commit 96260e0

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/ServiceStack.Redis/RedisClient.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -622,9 +622,10 @@ internal void AddTypeIdsRegisteredDuringPipeline()
622622
foreach (var entry in registeredTypeIdsWithinPipelineMap)
623623
{
624624
var typeIdsSetKey = entry.Key;
625+
var registeredTypeIdsWithinPipeline = GetRegisteredTypeIdsWithinPipeline(typeIdsSetKey);
626+
625627
foreach (var id in entry.Value)
626628
{
627-
var registeredTypeIdsWithinPipeline = GetRegisteredTypeIdsWithinPipeline(typeIdsSetKey);
628629
registeredTypeIdsWithinPipeline.Each(x => this.AddItemToSet(typeIdsSetKey, id));
629630
}
630631
}

0 commit comments

Comments
 (0)