Jack Lindamood
Jack Lindamood
Hi, I'm using go 1.5.1 and a fork that puts 1.5 in the expected header at https://github.com/cep21/heapdump14 (https://github.com/cep21/heapdump14/commit/1d13a6e5b26f5e2678caa105f22c40041eade8bd) My program is a simple hello-world like app at https://github.com/cep21/heaptest/blob/master/main.go. I run...
Add a feature that uses https://github.com/golang/sync/blob/master/semaphore/semaphore.go to limit concurrency. In this implementation, rather than failing fast with an error, the function would wait according to the context if was at...
An implementation of https://github.com/cep21/circuit/blob/master/v3/metrics/statsdmetrics/statsd.go in another repository with standardized tag names and platform independent. I think datadog style statsd tags will allow us to solve this in a generalized way
# Problem In the basic case, we want to time out or limit the rare bad request so we can maintain a good SLA. However, when problems happen (maybe the...
We should have tests to ensure statsd metric values don't change.
Hi, I'm using migra as part of my CI/CD pipeline. I understand wanting migra's error code to match diff's, but for a CI/CD pipeline I want to differentiate between a...
If there are dependency cycles, the framework just fails inside a stack overflow. Ideally it would detect cycles and give a good error message.
### Describe the bug Our flux 1.0 setup is a monorepo with this setup ``` /releases/// ``` For example, we have one file in the path ``` /releases/prod/nginx-ingress/helmrelease-nginx.yaml ``` In...
Hi, I have a "mage.go" file at my root. I also have some helper libraries, at a path like `github.com/mycompany/magehelpers` So my go.mod file may look like this ``` module...
Reproducible test case: ``` > cat convey_test.go package convey import ( . "github.com/smartystreets/goconvey/convey" "testing" ) func TestFoo(t *testing.T) { t.Parallel() Convey("Foo", t, func() { Reset(func() {}) }) } func TestBar(t...