This is an automated email from the ASF dual-hosted git repository.
alexstocks pushed a commit to branch 3.0
in repository https://gitbox.apache.org/repos/asf/dubbo-go.git
The following commit(s) were added to refs/heads/3.0 by this push:
new 048392c fix common.URL serialization bug (#1292)
048392c is described below
commit 048392cc72ceb755909cec2c6055da356d305863
Author: XavierNiu <[email protected]>
AuthorDate: Fri Jul 2 13:48:51 2021 +0800
fix common.URL serialization bug (#1292)
---
config/config_loader.go | 1 +
1 file changed, 1 insertion(+)
diff --git a/config/config_loader.go b/config/config_loader.go
index 07ef325..63c6e91 100644
--- a/config/config_loader.go
+++ b/config/config_loader.go
@@ -390,6 +390,7 @@ func LoadWithOptions(options ...LoaderInitOption) {
// register metadata info and service info
hessian.RegisterPOJO(&common.MetadataInfo{})
hessian.RegisterPOJO(&common.ServiceInfo{})
+ hessian.RegisterPOJO(&common.URL{})
for _, option := range options {
option.init()