fix: use lowercase for status

This commit is contained in:
guoaomen
2022-08-17 11:04:34 +08:00
parent bc7d40209d
commit 61792c5403

View File

@@ -1,5 +1,11 @@
package com.actiontech.dble.backend.heartbeat;
public enum MySQLHeartbeatStatus {
INIT(), OK(), ERROR(), TIMEOUT(), STOP()
INIT(), OK(), ERROR(), TIMEOUT(), STOP();
@Override
public String toString() {
return super.toString().toLowerCase();
}
}