This is an automated email from the ASF dual-hosted git repository.
albumenj pushed a commit to branch 3.3
in repository https://gitbox.apache.org/repos/asf/dubbo.git
The following commit(s) were added to refs/heads/3.3 by this push:
new a50a4173a6 delete SpringCloudServiceInstanceNotificationCustomizer
(#14450)
a50a4173a6 is described below
commit a50a4173a63be28eff1e2170a4c4335104079384
Author: 王聪洋 <[email protected]>
AuthorDate: Tue Jul 23 10:56:20 2024 +0800
delete SpringCloudServiceInstanceNotificationCustomizer (#14450)
---
...CloudServiceInstanceNotificationCustomizer.java | 70 ----------------------
....metadata.ServiceInstanceNotificationCustomizer | 1 -
2 files changed, 71 deletions(-)
diff --git
a/dubbo-registry/dubbo-registry-api/src/main/java/org/apache/dubbo/registry/client/metadata/SpringCloudServiceInstanceNotificationCustomizer.java
b/dubbo-registry/dubbo-registry-api/src/main/java/org/apache/dubbo/registry/client/metadata/SpringCloudServiceInstanceNotificationCustomizer.java
deleted file mode 100644
index e0509b0a37..0000000000
---
a/dubbo-registry/dubbo-registry-api/src/main/java/org/apache/dubbo/registry/client/metadata/SpringCloudServiceInstanceNotificationCustomizer.java
+++ /dev/null
@@ -1,70 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.apache.dubbo.registry.client.metadata;
-
-import org.apache.dubbo.common.ProtocolServiceKey;
-import org.apache.dubbo.metadata.MetadataInfo;
-import org.apache.dubbo.registry.client.ServiceInstance;
-
-import java.util.Collections;
-import java.util.HashMap;
-import java.util.List;
-import java.util.concurrent.ConcurrentHashMap;
-
-public class SpringCloudServiceInstanceNotificationCustomizer implements
ServiceInstanceNotificationCustomizer {
- @Override
- public void customize(List<ServiceInstance> serviceInstance) {
- if (serviceInstance.isEmpty()) {
- return;
- }
-
- if (!serviceInstance.stream()
- .allMatch(instance ->
"SPRING_CLOUD".equals(instance.getMetadata("preserved.register.source")))) {
- return;
- }
-
- for (ServiceInstance instance : serviceInstance) {
- MetadataInfo.ServiceInfo serviceInfo =
- new MetadataInfo.ServiceInfo("*", "*", "*", "rest",
instance.getPort(), "*", new HashMap<>());
- String revision = "SPRING_CLOUD-" + instance.getServiceName() +
"-" + instance.getAddress() + "-"
- + instance.getPort();
- MetadataInfo metadataInfo =
- new MetadataInfo(
- instance.getServiceName(),
- revision,
- new
ConcurrentHashMap<>(Collections.singletonMap("*", serviceInfo))) {
- @Override
- public List<ServiceInfo>
getMatchedServiceInfos(ProtocolServiceKey consumerProtocolServiceKey) {
- getServices()
- .putIfAbsent(
-
consumerProtocolServiceKey.getServiceKeyString(),
- new MetadataInfo.ServiceInfo(
-
consumerProtocolServiceKey.getInterfaceName(),
-
consumerProtocolServiceKey.getGroup(),
-
consumerProtocolServiceKey.getVersion(),
-
consumerProtocolServiceKey.getProtocol(),
- instance.getPort(),
-
consumerProtocolServiceKey.getInterfaceName(),
- new HashMap<>()));
- return
super.getMatchedServiceInfos(consumerProtocolServiceKey);
- }
- };
-
- instance.setServiceMetadata(metadataInfo);
- }
- }
-}
diff --git
a/dubbo-registry/dubbo-registry-api/src/main/resources/META-INF/dubbo/internal/org.apache.dubbo.registry.client.metadata.ServiceInstanceNotificationCustomizer
b/dubbo-registry/dubbo-registry-api/src/main/resources/META-INF/dubbo/internal/org.apache.dubbo.registry.client.metadata.ServiceInstanceNotificationCustomizer
deleted file mode 100644
index 7746df631b..0000000000
---
a/dubbo-registry/dubbo-registry-api/src/main/resources/META-INF/dubbo/internal/org.apache.dubbo.registry.client.metadata.ServiceInstanceNotificationCustomizer
+++ /dev/null
@@ -1 +0,0 @@
-spring-cloud=org.apache.dubbo.registry.client.metadata.SpringCloudServiceInstanceNotificationCustomizer