sdk-go icon indicating copy to clipboard operation
sdk-go copied to clipboard

Go SDK for CloudEvents

Results 158 sdk-go issues
Sort by recently updated
recently updated
newest added

```golang rt1 := // ... create rountripper p1 := http.New(http.WithRoundTripper(rt1)) rt2 := // ... create rountripper p2 := http.New(http.WithRoundTripper(rt2)) // unexpected: // p1 has the same roundtripper rt2 as p2...

It would be great to add benchmarks to the CloudEvents SQL package, so that we can find any places where performance improvements can be made as well as detect performance...

Given the popularity of this repos: https://github.com/confluentinc/confluent-kafka-go, Are we also considering integrating it? We now have the implementation of [sarama](https://github.com/Shopify/sarama), but there are still many people who are optimistic about...

Since I updated github.com/cloudevents/sdk-go/v2 to version `v2.14.0`, I found it depend on `go.uber.org/atomic to version`, and When I compile my code, the following error occurs: ``` # go.uber.org/multierr ../../../../pkg/mod/go.uber.org/[email protected]/error.go:209:20: undefined:...

Heya! I'm using cloudevents via `cloudevents.NewHTTPReceiveHandler` and a net/http router. I'm unable to get this setup to parse ce-traceparent for incoming events. Current setup looks like ```go protocol, err :=...

Currently, all tutorials prompt you to init cloudevents client like this: ``` c, err := cloudevents.NewClient(protocol) ``` What they're not telling you is that all event errors due to eg...

On the pubsub receiver sample, the [instruction](https://github.com/cloudevents/sdk-go/blob/1f844bade36c2da5d36a085daa42d05991e898bb/samples/pubsub/receiver/main.go#L26) on how to publish the msg is missing the attributes. Without setting a few attribute arg. Without attributes, the code will fail with...

Hello all, I'm having a problem where I'm using the pubsub protocol to send events in binary mode and was expecting the `datacontenttype` to be sent as the `ce-datacontenttype` attribute...

I just adapted the sender and receiver examples from the main repo page a little bit and when the receiver isn't running but I run the sender then `IsUndelivered()` returns...

Hi, back in May I added the [binary content mode](https://github.com/cloudevents/spec/blob/main/cloudevents/bindings/nats-protocol-binding.md#31-binary-content-mode) to the CloudEvents spec for NATS. Both the `nats` and `nats_jetstream` bindings can be updated to support the binary mode...