Alan Conway
Alan Conway
Test code ``` func TestSendReceive(t *testing.T) { c, err := amqp.Dial("amqp://") require.NoError(t, err) defer c.Close() ssn, err := c.NewSession() require.NoError(t, err) r, err := ssn.NewReceiver(amqp.LinkAddressDynamic()) require.NoError(t, err) s, err :=...
vcabbage currently only acts as a client, and does not support incoming lines Add support for listening on a server socket and accepting incoming links and sessions (for both client...
The current Sender.Send() blocks for the remote disposition. This is fine for many applications, but it does not allow sending at full network throughput because it forces the sender t...
Envoy can already make outbound HTTP client connections and accept inbound HTTP server connections. AMQP is a bi-directional protocol: either end of a connection can send or receive messages. For...
See comment on https://github.com/googleapis/gnostic/commit/896953e6749863beec38e27029c804e88c3144b8#commitcomment-37259173
Go supports testable examples https://blog.golang.org/examples. They have important advantages over README examples. 1. more visible - the examples end up in the package godoc, where they are more likely to...
We don't yet support matchExpressions so we should not include it in the API. When we do support it (LOG-1126) matchExpressions can be restored.
Flush out and fix test flakes. test/functional/outputs/cloudwatch/forward_to_cloudwatch_test.go: Wait for logs to appear with Eventually.
/cc @jcantrill /cc @Clee2691