Shaun Crampton
Shaun Crampton
I wrote a test like this: ``` def test_rcv_request(self): def do_rcv_fanout_test(type, function_name): ... yield do_rcv_fanout_test, "create", "create_it" yield do_rcv_fanout_test, "create", "create_it" ``` The tests are detected and run but self.setUp()...
I'm struggling to find a good workflow to work on our "product" repo and our "library" repo at the same time when I'm making changes that affect both. Is there...
In a CI run of our project, we hit the following panic (using the kubernetes client to list some custom resources): ``` panic: runtime error: invalid memory address or nil...
I'm not sure what the solution is but as more and more apps start to use CNI, I'm seeing them fight over the /etc/cni/net.d directory. For example, RH CoreOS pre-installs...
## Description Reports of the kernel bug being fixed seem to have been greatly exaggerated. ## Related issues/PRs Fixes #4727 ## Todos - [x] Tests - [ ] Documentation -...
## Description Using jsoniter's drop-in replacement mode to speed up our JSON encoding/decoding. Seems to be a simple win; cuts the time to decode a workload endpoint in half, for...
## Description The old version was linear, trying one key type after another. As the number of key types has grown this now causes noticable CPU usage when benchmarking. This...
Sometimes hping reports an RTT that is 1000ms larger than all the other values. However, it doesn't actually pause for 1s at that line, it appears that the time is...
I tried supplying multiple hosts, the first of which was down as proxies. Rather than falling back to the next host, I get this value error: ``` >>> c =...
I have some files that import the same library package multiple times with different names: ``` import log "github.com/sirupsen/logrus" import "github.com/sirupsen/logrus" ``` I was hoping to write a gopatch to...