mirror of
https://gitee.com/durcframework/SOP.git
synced 2025-08-11 21:57:56 +08:00
全面使用nacos,舍弃zookeeper
This commit is contained in:
@@ -22,15 +22,14 @@ public class DefaultEnvGrayManager implements EnvGrayManager {
|
||||
|
||||
@Override
|
||||
public void saveServiceGrayConfig(ServiceGrayConfig serviceGrayConfig) {
|
||||
serviceGrayConfigMap.putIfAbsent(serviceGrayConfig.getServiceId(), serviceGrayConfig);
|
||||
serviceGrayConfigMap.put(serviceGrayConfig.getServiceId(), serviceGrayConfig);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean containsKey(String instanceId, Object userKey) {
|
||||
if (instanceId == null || userKey == null) {
|
||||
public boolean containsKey(String serviceId, Object userKey) {
|
||||
if (serviceId == null || userKey == null) {
|
||||
return false;
|
||||
}
|
||||
String serviceId = instanceIdServiceIdMap.get(instanceId);
|
||||
ServiceGrayConfig grayConfig = this.getGrayConfig(serviceId);
|
||||
return grayConfig != null && grayConfig.containsKey(userKey);
|
||||
}
|
||||
|
Reference in New Issue
Block a user