Antoine Grondin
Antoine Grondin
The library pulls in [`github.com/golang/glog`](https://github.com/kidoman/embd/blob/master/descriptor.go#L9) for logging. That package installs global flags in the stdlib `flag` package, which means applications using `embd` get a bunch of flags pulled in by...
👋 I'm just messing around here to try and find a way to have contexts supported by code that I work with that uses sarama. Is this something that would...
I feel this might not be possible, but something missing in `otto` is being able to somehow limit how much memory a VM is allowed to use, or CPU (there's...
## Expected Behavior The program should return well formatted errors and shouldn't panic, especially not for bug-looking reasons like assigning in nil-maps. ## Actual Behavior ``` panic: assignment to entry...
As an operator, I'm interested in adding support for distributed tracing in the `spire-agent` and `spire-server` APIs. This would help me observe interactions between the agent and the server, and...
For telemetry purpose, it's useful to have access to the current "call stack" of workflow, sub workflow, activities and so on, at any given point. For instance, to make better...
See https://github.com/temporalio/api/blob/c1f04d0856a3ba2995e92717607f83536b5a44f5/temporal/api/enums/v1/workflow.proto#L44-L52
Provide an API to access a PRNG that allows usage of "randomness". Perhaps record the seed of the PRNG and reuse this across, so that workflows remain deterministic despite using...
Package `net/http/httptest` provides a test `http.Server` that is closeable. It provides the same behavior as the current implementation of test servers (for instance [`ec2/ec2test`](https://github.com/crowdmob/goamz/blob/master/ec2/ec2test/server.go#L270-L273) or [`s3/s3test`](https://github.com/crowdmob/goamz/blob/master/s3/s3test/server.go#L116-L119)) with a cleaner interface:...
I noticed that https://github.com/rsc/gt/blob/master/main.go#L499-L500 makes is so that flags such as `-cover` or `-race` disable the use of the cache. I'm assuming this is on purpose, I'm curious to know...