File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ deploy:
19
19
branch : master
20
20
local-dir : docs
21
21
env :
22
- - TEST_PACKAGES='./core ./grpc ./limit ./limit/functions ./limiter ./measurements ./strategy ./strategy/matchers ./metric_registry/datadog ./metric_registry/gometrics ./examples/example_simple_limit'
22
+ - TEST_PACKAGES='./core ./grpc ./limit ./limit/functions ./limiter ./measurements ./strategy ./strategy/matchers ./metric_registry/datadog ./metric_registry/gometrics ./examples/example_simple_limit ./examples/example_blocking_limit '
23
23
before_script :
24
24
- go get golang.org/x/tools/cmd/cover
25
25
- go get github.com/mattn/goveralls
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ func main() {
109
109
go func (c int ) {
110
110
for i := 0 ; i < 5 ; i ++ {
111
111
defer wg .Done ()
112
- ctx := context .WithValue (context .Background (), testContextKey , c + i )
112
+ ctx := context .WithValue (context .Background (), testContextKey , c + i )
113
113
guardedResource .poll (ctx )
114
114
}
115
115
}(counter )
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ func main() {
106
106
go func (c int ) {
107
107
for i := 0 ; i < 5 ; i ++ {
108
108
defer wg .Done ()
109
- ctx := context .WithValue (context .Background (), testContextKey , c + i )
109
+ ctx := context .WithValue (context .Background (), testContextKey , c + i )
110
110
guardedResource .poll (ctx )
111
111
}
112
112
}(counter )
You can’t perform that action at this time.
0 commit comments