This is an automated email from the ASF dual-hosted git repository.

liurui pushed a commit to branch file_size_monitor
in repository https://gitbox.apache.org/repos/asf/incubator-iotdb.git


The following commit(s) were added to refs/heads/file_size_monitor by this push:
     new d7a2dfa  format ServiceType
d7a2dfa is described below

commit d7a2dfad7f8aa319f9e10de58703c6b9a947a349
Author: liuruiyiyang <[email protected]>
AuthorDate: Wed Mar 13 11:04:06 2019 +0800

    format ServiceType
---
 .../java/org/apache/iotdb/db/service/ServiceType.java  | 18 +++++++++++-------
 1 file changed, 11 insertions(+), 7 deletions(-)

diff --git a/iotdb/src/main/java/org/apache/iotdb/db/service/ServiceType.java 
b/iotdb/src/main/java/org/apache/iotdb/db/service/ServiceType.java
index 61ae722..e6c58ea 100644
--- a/iotdb/src/main/java/org/apache/iotdb/db/service/ServiceType.java
+++ b/iotdb/src/main/java/org/apache/iotdb/db/service/ServiceType.java
@@ -16,16 +16,20 @@
  * specific language governing permissions and limitations
  * under the License.
  */
+
 package org.apache.iotdb.db.service;
 
 public enum ServiceType {
-  FILE_NODE_SERVICE("File Node ServerService", ""), JMX_SERVICE("JMX 
ServerService",
-      "JMX ServerService"), JDBC_SERVICE("JDBC ServerService", "JDBCService"), 
MONITOR_SERVICE(
-      "Monitor ServerService", "Monitor"), STAT_MONITOR_SERVICE("Statistics 
ServerService",
-      ""), WAL_SERVICE("WAL ServerService", ""), 
CLOSE_MERGE_SERVICE("Close&Merge ServerService",
-      ""), JVM_MEM_CONTROL_SERVICE("Memory Controller", ""), 
AUTHORIZATION_SERVICE(
-      "Authorization ServerService",
-      ""), FILE_READER_MANAGER_SERVICE("File reader manager ServerService", 
"");
+  FILE_NODE_SERVICE("File Node ServerService", ""),
+  JMX_SERVICE("JMX ServerService", "JMX ServerService"),
+  JDBC_SERVICE("JDBC ServerService", "JDBCService"),
+  MONITOR_SERVICE("Monitor ServerService", "Monitor"),
+  STAT_MONITOR_SERVICE("Statistics ServerService", ""),
+  WAL_SERVICE("WAL ServerService", ""),
+  CLOSE_MERGE_SERVICE("Close&Merge ServerService", ""),
+  JVM_MEM_CONTROL_SERVICE("Memory Controller", ""),
+  AUTHORIZATION_SERVICE("Authorization ServerService", ""),
+  FILE_READER_MANAGER_SERVICE("File reader manager ServerService", "");
   private String name;
   private String jmxName;
 

Reply via email to