Skip to content

Commit 202216d

Browse files
author
Aleksei Rostov
committed
Fixed error for mcrouter
1 parent ffa6bcb commit 202216d

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)