-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
810 additions
and
222 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +0,0 @@ | ||
# Change Log | ||
|
||
## [0.1.1](https://git.woa.com/trpc-go/trpc-filter/tree/degrade/v0.1.1) (2022-07-16) | ||
|
||
### Features | ||
- 升级 trpc-go 到 v0.9.4,适配新版本 filter 签名 | ||
|
||
## [0.1.0](https://git.woa.com/trpc-go/trpc-filter/tree/degrade/v0.1.0) (2020-06-02) | ||
|
||
### Features | ||
- 增加最大并发请求数限制,应对超短时突发流量,和原有熔断互为补充 | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,43 @@ | ||
module trpc.group/trpc-go/trpc-filter/degrade | ||
|
||
go 1.12 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/shirou/gopsutil v2.19.12+incompatible | ||
github.com/stretchr/testify v1.8.0 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
trpc.group/trpc-go/trpc-go v0.0.0-20230919115157-95737ac0b3e8 | ||
) | ||
|
||
require ( | ||
github.com/BurntSushi/toml v0.3.1 // indirect | ||
github.com/StackExchange/wmi v0.0.0-20210224194228-fe8f1750fd46 // indirect | ||
github.com/andybalholm/brotli v1.0.4 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/fsnotify/fsnotify v1.4.9 // indirect | ||
github.com/go-ole/go-ole v1.2.5 // indirect | ||
github.com/shirou/gopsutil v2.19.12+incompatible | ||
github.com/stretchr/testify v1.7.0 | ||
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 | ||
github.com/golang/snappy v0.0.3 // indirect | ||
github.com/google/flatbuffers v2.0.0+incompatible // indirect | ||
github.com/hashicorp/errwrap v1.0.0 // indirect | ||
github.com/hashicorp/go-multierror v1.1.1 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/klauspost/compress v1.15.9 // indirect | ||
github.com/lestrrat-go/strftime v1.0.6 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/panjf2000/ants/v2 v2.4.6 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/spf13/cast v1.3.1 // indirect | ||
github.com/valyala/bytebufferpool v1.0.0 // indirect | ||
github.com/valyala/fasthttp v1.43.0 // indirect | ||
go.uber.org/atomic v1.9.0 // indirect | ||
go.uber.org/automaxprocs v1.3.0 // indirect | ||
go.uber.org/multierr v1.6.0 // indirect | ||
go.uber.org/zap v1.24.0 // indirect | ||
golang.org/x/sync v0.1.0 // indirect | ||
golang.org/x/sys v0.4.0 // indirect | ||
google.golang.org/protobuf v1.30.0 // indirect | ||
trpc.group/trpc-go/tnet v0.0.0-20230810071536-9d05338021cf // indirect | ||
trpc.group/trpc/trpc-protocol/pb/go/trpc v0.0.0-20230803031059-de4168eb5952 // indirect | ||
) |
Oops, something went wrong.