This is an automated email from the ASF dual-hosted git repository.

albumenj pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo.git


The following commit(s) were added to refs/heads/master by this push:
     new dc49241  bug: String.format have wrong number of parameters. (#7203)
dc49241 is described below

commit dc4924134faafb5b7e3db5995cee471c187c27cb
Author: XenoAmess <[email protected]>
AuthorDate: Sat Feb 20 09:30:55 2021 +0800

    bug: String.format have wrong number of parameters. (#7203)
---
 .../apache/dubbo/metadata/DynamicConfigurationServiceNameMapping.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dubbo-metadata/dubbo-metadata-api/src/main/java/org/apache/dubbo/metadata/DynamicConfigurationServiceNameMapping.java
 
b/dubbo-metadata/dubbo-metadata-api/src/main/java/org/apache/dubbo/metadata/DynamicConfigurationServiceNameMapping.java
index 12d6665..13938ca 100644
--- 
a/dubbo-metadata/dubbo-metadata-api/src/main/java/org/apache/dubbo/metadata/DynamicConfigurationServiceNameMapping.java
+++ 
b/dubbo-metadata/dubbo-metadata-api/src/main/java/org/apache/dubbo/metadata/DynamicConfigurationServiceNameMapping.java
@@ -66,7 +66,7 @@ public class DynamicConfigurationServiceNameMapping 
implements ServiceNameMappin
             dynamicConfiguration.publishConfig(key, 
ServiceNameMapping.buildGroup(serviceInterface, group, version, protocol), 
content);
             if (logger.isInfoEnabled()) {
                 logger.info(String.format("Dubbo service[%s] mapped to 
interface name[%s].",
-                        group, serviceInterface, group));
+                        group, serviceInterface));
             }
         });
     }

Reply via email to