Ashley Jeffs

Results 229 comments of Ashley Jeffs

Okay so I've put together a wasm processor using wazero so we still avoid the cgo dependencies: https://github.com/benthosdev/benthos/commit/da7179aefb1d7dd32dc34a7e7243adab73f8be28, I decided in the end to implement helper functions for accessing/mutating message...

Hey @loicalleyne, there's potential here but we'd need to be very specific about how we handle a range of edge cases.

Hey @EmilLaursen, thanks for raising this, I'll take a look as we can at the very least capture the incorrect headers and remove them, I doubt that's going to break...

Hey @DeusFacticius, this is a case of misleading and confusing documentation. The blurb of: > Timestamp values can either be a numerical unix time in seconds (with up to nanosecond...

So I've removed pulsar from the default benthos builds: https://github.com/benthosdev/benthos/commit/1792ca473d8cb731cf3b9d16da27a205a62fb1f8, and the first release of V4 (unless this gets fixed) will come without it. However, the option to compile Benthos...

Related: https://github.com/99designs/keyring/issues/103

Hey @jlourenc, I'll need to put some proper time aside to understand fully what's going on here but we'd also need to leave `Search` unchanged, as this change would add...

Hey @bandikishores, the `Set` function should always have at least one path parameter, otherwise you are setting a reference type that gets immediately dropped. There's maybe a case for panicking...

Hey @duolabmeng6, looks like your issue is that gabs doesn't recognize the `H` type so it doesn't know how to walk it. This can probably be resolved by attempting a...

Hey @chandraanwar91, the underlying value of an array or object is always `[]interface{}` and `map[string]interface{}` respectively, therefore you can do something like this this for type switching: ```go switch gObj.Data().(type)...