From 85c3293ef1616536b5a7f77e02a9f93ad54a12a0 Mon Sep 17 00:00:00 2001 From: Calle Wilund Date: Wed, 21 Dec 2016 15:45:17 +0000 Subject: [PATCH] scylla-jmx: Missing getter in MBean interface. It got lost somewhere. Message-Id: <1482335118-9595-1-git-send-email-calle@scylladb.com> --- .../java/org/apache/cassandra/service/StorageServiceMBean.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/org/apache/cassandra/service/StorageServiceMBean.java b/src/main/java/org/apache/cassandra/service/StorageServiceMBean.java index f89ee91..e9e04dd 100644 --- a/src/main/java/org/apache/cassandra/service/StorageServiceMBean.java +++ b/src/main/java/org/apache/cassandra/service/StorageServiceMBean.java @@ -598,6 +598,7 @@ public interface StorageServiceMBean extends NotificationEmitter { public int getInterDCStreamThroughputMbPerSec(); + public int getCompactionThroughputMbPerSec(); public void setCompactionThroughputMbPerSec(int value); public boolean isIncrementalBackupsEnabled();