-
Notifications
You must be signed in to change notification settings - Fork 504
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 修复空keeprContainer不会被检测,已经下线的keeperContainer仍存在于checker的问题 * 整理分析keeper问题代码 * 优化keeperContainer analyzer机构,新增修改keeperContainer DiskType内容 * keeperContainer的标准存到config_tbl中,并且提供修改api --------- Co-authored-by: yifuzhou <[email protected]>
- Loading branch information
1 parent
112a10d
commit c419d8a
Showing
35 changed files
with
931 additions
and
692 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
...e/src/main/java/com/ctrip/xpipe/redis/console/keeper/Command/AbstractGetAllDcCommand.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package com.ctrip.xpipe.redis.console.keeper.Command; | ||
|
||
import com.ctrip.xpipe.command.AbstractCommand; | ||
import org.springframework.web.client.RestOperations; | ||
|
||
public abstract class AbstractGetAllDcCommand<T> extends AbstractCommand<T> { | ||
protected String domain; | ||
protected RestOperations restTemplate; | ||
|
||
protected AbstractGetAllDcCommand(String domain, RestOperations restTemplate) { | ||
this.domain = domain; | ||
this.restTemplate = restTemplate; | ||
} | ||
|
||
public void setDomain(String domain) { | ||
this.domain = domain; | ||
} | ||
|
||
public abstract AbstractGetAllDcCommand<T> clone (); | ||
|
||
} |
Oops, something went wrong.