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 2019/09/26 16:05:02 UTC

[dubbo-go] branch develop updated (dfbdd01 -> ab77c92)

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.git.


    from dfbdd01  Merge pull request #219 from fangyincheng/develop
     new c5082fd  AccessLogFilter support
     new 9c4ae4e  Fix issue for review
     new 23f69cf  Read the accesslog config from config file
     new 0014edd  Add example support
     new 17d2a8c  Comment the example
     new 2fa5a79  Add the AccessLogFilter into default filters and add example in comments of acccess_log_filter
     new 6d82f6b  Remove chinese comment —— copy from example...
     new 25c3bf9  Add remark
     new f1693db  Merge branch 'develop' of https://github.com/apache/dubbo-go into feature/access_log_filter
     new ec06f21  Add log to debug UT
     new ab77c92  Merge pull request #214 from flycash/feature/access_log_filter

The 976 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:
 cluster/router/condition_router_test.go            |   1 +
 common/constant/default.go                         |   2 +-
 common/constant/key.go                             |   3 +
 config/service_config.go                           |   4 +
 .../dubbo/go-server/profiles/dev/server.yml        |   5 +-
 filter/impl/access_log_filter.go                   | 223 +++++++++++++++++++++
 filter/impl/access_log_filter_test.go              |  82 ++++++++
 go.sum                                             |   1 +
 protocol/dubbo/listener.go                         |   9 +-
 9 files changed, 326 insertions(+), 4 deletions(-)
 create mode 100644 filter/impl/access_log_filter.go
 create mode 100644 filter/impl/access_log_filter_test.go