JonasDoe

Results 52 comments of JonasDoe

I've created an [illustration](https://gist.github.com/JonasDoe/51925baeb407040c6b93b172d2425ad3). There's nothing CE-specific about it, but it also uses `http.server` without timeouts set, despite using a context with timeout in the `ServeHTTP` function. I've added a...

If I understand correctly the client is used to do requests, not to receive them. That's what the server is used for. Looking at [this method](https://github.com/cloudevents/sdk-go/blob/master/pkg/cloudevents/transport/http/transport.go#L300l) it seems that the...

Yes, that would be great! :) It's not just an issue here by the way, you can find it even in the standard Go library. Just look at methods like...

I see that you're doing more and more stuff internally with the `server` (like enforcing an [`ochttp.Handler`](https://github.com/cloudevents/sdk-go/blob/master/v2/protocol/http/protocol_lifecycle.go#L36), so it does not really seem that you want the server to be...

Sorry for the delay, I've resorted to a workaround via reflections and forgot about this issue. I haven't checked the new code yet, but I think I could provide a...

Any update on that? I agree that `filepath.Join` should be work as well.

According to the [draft](http://json-schema.org/understanding-json-schema/reference/object.html#required-properties), required properties shall be displayed in a manner like `"required": ["name", "email"]` now. Still, it would be nice to have that feature on board!

Having the same problem with Ubuntu 22.04 - Google says, it's using Wayland now. But does that mean that ksnip (resp. its global hotkeys) won't work on any new versions?...

Oh, nice! In that case, I figure the issue is more or less solved (with some minimal custom configuration, that it). Since I got the impression that Wayland's strict hotkey...

Well, being careful and explicit would mean you shouldn't log any errors you didn't create by yourself, or at least only passing redacted error strings instead of error objects. ;(...