Noah Kreiger

Results 13 issues of Noah Kreiger

Signed-off-by: Noah Kreiger This change would support a variable `$ROOT` in the `shift` operation to move everything in the root payload under that key, it maintains backwards comp...and makes logical...

Moving the logic from the instantiation of the adapter scope, to the application, puts everything inside the CE http request scope and fixes the issue (as far as my testing...

This logic: https://github.com/triggermesh/triggermesh/blob/main/pkg/flow/adapter/transformation/adapter.go#L97-L109 happening on instantiation of the adapter makes it nice and re-usable, however, it causes a bug when receiving and performing transformations at high traffic. I believe it...

# Chore ## Describe the chore In order to set the parameter `log_min_messages` you need elevated privileges, https://github.com/supabase/realtime/blob/e34899b6829b49d7e2ea769717059e3ba1835fea/lib/extensions/postgres_cdc_rls/repo/migrations/20230328144023_create_list_changes_function.ex#L11 These privileges cannot be achieved in certain managed Cloud SQL instances. It...

https://github.com/google/go-github/blob/c4ec3276de8584568e12e2a6af0d84a29a5ba8d8/github/github.go#L795 Is there a reason this is unexported? I'm experimenting with the go-github ratelimiter, and it seems like it doesn't even reach the RoundTrip function to properly sleep with BareDo...

It would be really powerful to have a target that will emit the received event at a programmed time to simulate/create scenarios like cache expiration, delayed notifications, etc. The challenges,...

The default maximum message size for the Kafka broker, is 1 MB. This can be increased to handle larger payloads, but their are performance implications, and design flaws to doing...

### Clear and concise description of the problem In client facing editors, sometimes you want to ensure certain values are always there, and cannot be removed by the user. You...

```go ctx := context.Background() ctx = context.WithValue(ctx, http.InboundReadTimeout{}, 15*time.Minute) ctx = context.WithValue(ctx, http.InboundWriteTimeout{}, 15*time.Minute) log.Fatal(c.StartReceiver(ctx, receiver)) ```

## Description of the change This Change/Proposal, is to allow setting the enableServiceLinks boolean in a kubernetes deployment via the helm charts. This is kind of an obscure configuration ask....