Evan Jones

Results 55 comments of Evan Jones

At this point, that is probably a reasonable strategy :)

Its possible that this issue should be closed. Unfortunately, commit 19f07688a2 broke this, at least for me. When I run the tests locally using the previous commit (8f196d4d7c), they all...

I just found a bug in this change, a year and a half later! This tweak makes this work with both unit tests and dev_appserver.py

This is a second attempt at #683. I started this as a new pull request because it takes a slightly different approach, so I was personally finding the commit history...

I believe this PR should fix the bug that was just reported to the Go project: https://github.com/golang/go/issues/53703 . The outstanding issue that I need to get back to is escaping...

I must admit, while attempting to implement a simple logging tracer, I'm also a little confused about why the `Span.Tracer` method exists. I was expecting it to be used as...

https://github.com/grpc/grpc-go/issues/4265 is related to this issue, since the current settings are different between the C, Java, and Go implementations.

This is a bit tricky to implement. The compiled Python bytecode files depend on the exact version of the Python interpreter, I believe. This means we would need to compile...

You can hack this using a multi-stage Docker build. It requires manually figuring out what Debian packages to include though. Here is an example I have that installs graphviz and...

The approach in the Dockerfile linked above extracts the contents of the listed `.deb` packages into the container image using `dpkg --extract`. A quick test on a package locally suggests...