Skip to content

Commit

Permalink
fix lrange call to storage session
Browse files Browse the repository at this point in the history
  • Loading branch information
vazois committed Nov 8, 2024
1 parent e1a111c commit 6880d53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/server/Storage/Session/ObjectStore/ListOps.cs
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ public GarnetStatus ListTrim<TObjectContext>(byte[] key, ref ObjectInput input,
/// <returns></returns>
public GarnetStatus ListRange<TObjectContext>(byte[] key, ref ObjectInput input, ref GarnetObjectStoreOutput outputFooter, ref TObjectContext objectStoreContext)
where TObjectContext : ITsavoriteContext<byte[], IGarnetObject, ObjectInput, GarnetObjectStoreOutput, long, ObjectSessionFunctions, ObjectStoreFunctions, ObjectStoreAllocator>
=> RMWObjectStoreOperationWithOutput(key, ref input, ref objectStoreContext, ref outputFooter);
=> ReadObjectStoreOperationWithOutput(key, ref input, ref objectStoreContext, ref outputFooter);

/// <summary>
/// Inserts a new element in the list stored at key either before or after a value pivot
Expand Down

0 comments on commit 6880d53

Please sign in to comment.