Skip to content

Commit

Permalink
Fixed bug where RedisGrainStorage would ignore the RedisStorageOption…
Browse files Browse the repository at this point in the history
…s.GrainStorageSerializer property (#8260)

Co-authored-by: Will Gunaratne <[email protected]>
  • Loading branch information
willg1983 and Will Gunaratne authored Jan 13, 2023
1 parent eda972a commit 8c44dab
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ public RedisGrainStorage(
_name = name;
_logger = logger;
_options = options;
_grainStorageSerializer = grainStorageSerializer;

_grainStorageSerializer = options.GrainStorageSerializer ?? grainStorageSerializer;
_serviceId = clusterOptions.Value.ServiceId;
}

Expand Down

0 comments on commit 8c44dab

Please sign in to comment.