scylla-jmx: Add dummy "compactionId" to compation info

To keep nodetool happy. Should maybe add actual Ids to compations.
Message-Id: <1482335118-9595-2-git-send-email-calle@scylladb.com>
This commit is contained in:
Calle Wilund 2016-12-21 15:45:18 +00:00 committed by Pekka Enberg
parent 85c3293ef1
commit 6f916b9d8e
1 changed files with 1 additions and 0 deletions

View File

@ -75,6 +75,7 @@ public class CompactionManager extends MetricsMBean implements CompactionManager
result.put("keyspace", compaction.getString("ks"));
result.put("columnfamily", compaction.getString("cf"));
result.put("unit", compaction.getString("unit"));
result.put("compactionId", "<none>");
results.add(result);
}
return results;