Michael Golowka

Results 5 issues of Michael Golowka

When specifying a slice flag: ``` Strs []string `short:"s" long:"strs" description:"..." ``` there doesn't appear to be a way to specify a delimiter to use to split the provided strings...

Currently, the cache doesn't evict an object when the expiration of that object passes but rather waits until the next `Get()` call before evicting it. This is problematic when the...

Panicking in a library is an anti-pattern in Go. It results in indeterministic and unpredictable code. The caller has no idea when a library is going to panic unless they...

tl;dr: The `SurgeUpgrade` field in [`KubernetesClusterUpdateRequest`](https://github.com/digitalocean/godo/blob/b16feac9513a6a1af15d33e1134631789e6fe20f/kubernetes.go#L90) should not have `omitempty` in the struct tags. This is preventing users from turning off `surge_upgrade` after the K8S cluster has been created. Reproduction...

We are using goconvey in our projects and want to be able to pipe the output of our tests into a test reporting system. To that end, we have a...