mirror of
https://github.com/actiontech/dble.git
synced 2026-02-06 21:48:43 -06:00
fix: use lowercase for status
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user