Ninja-fix typo in Tracing

This commit is contained in:
Sylvain Lebresne 2013-12-20 21:14:09 +01:00
parent ed6584ee16
commit 4fb06b33d4
1 changed files with 2 additions and 2 deletions

View File

@ -100,8 +100,8 @@ public class Tracing
{
for (Map.Entry<String, String> entry : rawPayload.entrySet())
{
cf.addColumn(new ExpiringCell(buildName(cf.metadata(), "parameters", entry.getKey()),
bytes(entry.getValue()), System.currentTimeMillis(), TTL));
cf.addColumn(new ExpiringCell(buildName(CFMetaData.TraceSessionsCf, "parameters", entry.getKey()),
bytes(entry.getValue()), System.currentTimeMillis(), TTL));
}
}