This is an automated email from the ASF dual-hosted git repository.
joezou pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-go-samples.git.
from e5999a2 Merge pull request #66 from beiwei30/filter
new 7df670e configcenter readme, import and run files
new cf6167f fix: revise README
new 502c238 fix: regroup imports
new 12a139c fix: regroup import for nacos configcenter
new a804655 Merge pull request #62 from beiwei30/configcenter
The 291 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.run/configcenter-apollo-client.run.xml | 15 ++++
.run/configcenter-apollo-server.run.xml | 15 ++++
...st.run.xml => configcenter-apollo-test.run.xml} | 6 +-
.run/configcenter-nacos-client.run.xml | 15 ++++
.run/configcenter-nacos-server.run.xml | 15 ++++
...est.run.xml => configcenter-nacos-test.run.xml} | 6 +-
.run/configcenter-zookeeper-client.run.xml | 15 ++++
.run/configcenter-zookeeper-server.run.xml | 15 ++++
...run.xml => configcenter-zookeeper-test.run.xml} | 6 +-
configcenter/README.md | 95 +++++++++++++++++++++
configcenter/README_zh.md | 99 ++++++++++++++++++++++
configcenter/apollo/go-client/cmd/client.go | 10 +--
configcenter/apollo/go-client/conf/client.yml | 2 +-
configcenter/apollo/go-server/cmd/server.go | 5 +-
configcenter/apollo/go-server/conf/client.yml | 2 +-
configcenter/apollo/go-server/conf/server.yml | 2 +-
configcenter/apollo/go-server/pkg/user.go | 5 +-
.../go-server/tests/integration/main_test.go | 15 ++--
.../tests/integration/userprovider_test.go | 3 +-
configcenter/nacos/go-client/cmd/client.go | 10 +--
configcenter/nacos/go-client/conf/client.yml | 2 +-
configcenter/nacos/go-server/app/server.go | 78 -----------------
configcenter/nacos/go-server/app/user.go | 63 --------------
configcenter/nacos/go-server/cmd/server.go | 5 +-
configcenter/nacos/go-server/conf/client.yml | 2 +-
configcenter/nacos/go-server/conf/server.yml | 2 +-
configcenter/nacos/go-server/pkg/user.go | 5 +-
.../nacos/go-server/tests/integration/main_test.go | 15 ++--
.../tests/integration/userprovider_test.go | 3 +-
configcenter/zookeeper/README.md | 38 ---------
configcenter/zookeeper/go-client/cmd/client.go | 14 +--
configcenter/zookeeper/go-client/conf/client.yml | 6 +-
configcenter/zookeeper/go-server/cmd/server.go | 6 +-
configcenter/zookeeper/go-server/conf/client.yml | 28 +++---
configcenter/zookeeper/go-server/conf/server.yml | 24 +++---
configcenter/zookeeper/go-server/pkg/user.go | 5 +-
.../go-server/tests/integration/main_test.go | 17 ++--
.../tests/integration/userprovider_test.go | 1 +
38 files changed, 379 insertions(+), 291 deletions(-)
create mode 100644 .run/configcenter-apollo-client.run.xml
create mode 100644 .run/configcenter-apollo-server.run.xml
copy .run/{docker-test.run.xml => configcenter-apollo-test.run.xml} (62%)
create mode 100644 .run/configcenter-nacos-client.run.xml
create mode 100644 .run/configcenter-nacos-server.run.xml
copy .run/{context-test.run.xml => configcenter-nacos-test.run.xml} (63%)
create mode 100644 .run/configcenter-zookeeper-client.run.xml
create mode 100644 .run/configcenter-zookeeper-server.run.xml
copy .run/{context-test.run.xml => configcenter-zookeeper-test.run.xml} (62%)
create mode 100644 configcenter/README.md
create mode 100644 configcenter/README_zh.md
delete mode 100644 configcenter/nacos/go-server/app/server.go
delete mode 100644 configcenter/nacos/go-server/app/user.go
delete mode 100644 configcenter/zookeeper/README.md