Skip to content

Commit 52aa5b1

Browse files
authored
Merge pull request #179 from AlekseyRostov/178-add-mcrouter-support
Fix error for mcrouter
2 parents ffa6bcb + 202216d commit 52aa5b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Enyim.Caching/Memcached/Protocol/Text/GetOperation.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ internal GetOperation(string key) : base(key) { }
1212

1313
protected internal override System.Collections.Generic.IList<System.ArraySegment<byte>> GetBuffer()
1414
{
15-
var command = "gets " + this.Key + TextSocketHelper.CommandTerminator;
15+
var command = "get " + this.Key + TextSocketHelper.CommandTerminator;
1616

1717
return TextSocketHelper.GetCommandBuffer(command);
1818
}

0 commit comments

Comments
 (0)