You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by al...@apache.org on 2021/08/07 09:52:12 UTC

[dubbo-go-pixiu] branch develop updated (71a2d60 -> ac2c232)

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

alexstocks pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/dubbo-go-pixiu.git.


    from 71a2d60  Merge pull request #229 from Mulavar/style/imports-fmt
     new 42746a5  refactor: command dependence use spf13/cobra instead
     new 15708c4  fix: etcd event type error fix: license check add ignore folder `vendor`
     new 24034fe  refactor: move init operation out of start gateway command to fit sidecar mode in the future
     new d34f241  fix: add license header
     new 768a617  fix: integrate test
     new 19afc50  style: command change from `./dubbo-go-pixiu start-gateway` to `./dubbo-go-pixiu gateway start`
     new fac8030  style: go simple
     new 3590d67  feat: readme fit new command
     new ac2c232  Merge pull request #234 from MasterKenway/refactor/cli-cobra

The 860 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:
 .gitignore                                         |   1 +
 .travis.yml                                        |   2 +-
 Makefile                                           |   4 +-
 README.md                                          |   2 +-
 README_CN.md                                       |   2 +-
 cmd/pixiu/control.go                               | 139 -------------------
 cmd/pixiu/gateway.go                               |  82 +++++++++++
 cmd/pixiu/pixiu.go                                 | 150 +++++++++++++++++----
 .../ratelimit/init_test.go => cmd/pixiu/sidecar.go |  29 ++--
 go.mod                                             |   2 +-
 go.sum                                             |  24 +++-
 igt/Makefile                                       |   8 +-
 pkg/common/constant/env.go                         |   9 ++
 pkg/common/constant/key.go                         |   9 ++
 pkg/common/constant/pixiu.go                       |   9 ++
 pkg/logger/logger.go                               |   8 +-
 samples/dubbogo/simple/start.sh                    |   2 +-
 start.sh                                           |   2 +-
 18 files changed, 282 insertions(+), 202 deletions(-)
 delete mode 100644 cmd/pixiu/control.go
 create mode 100644 cmd/pixiu/gateway.go
 copy pkg/filter/ratelimit/init_test.go => cmd/pixiu/sidecar.go (65%)