Commit 157eab2e authored by Nick Craver's avatar Nick Craver

Fix: Cluster.SimpleProfiling

parent 39a48f48
......@@ -596,7 +596,7 @@ public void SimpleProfiling()
var val = db.StringGet(key);
Assert.Equal("world", val);
var msgs = profiler.FinishProfiling();
var msgs = profiler.FinishProfiling().Where(m => m.Command == "GET" || m.Command == "SET");
foreach (var msg in msgs)
{
Log("Profiler Message: " + Environment.NewLine + msg.ToString());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment