Nathan

Results 23 comments of Nathan

This is likely related to https://github.com/vectordotdev/vector/pull/12880

This also affects arrays ```coffeescript $ x,err = [{.a=1}, push(.x, 1), {.b=2}] ``` ```text error[E103]: unhandled fallible assignment ┌─ :1:35 │ 1 │ x,err = [{.a=1}, push(.x, 1), {.b=2}] │...

... and arbitrary operators ```coffeescript $ {push(.x, 1); true} || {.a = 1} ``` ```text error[E103]: unhandled fallible assignment ┌─ :1:30 │ 1 │ {push(.x, 1); true} || {.a =...

Here is an example that compiles fine on `0.22.1` but fails to compile on `0.23.0` ```coffeescript ok,err = {.a=1; push(.x, 1); .b=2} ``` ```text error[E103]: unhandled fallible assignment ┌─ :1:33...

@briankung Thanks for the contribution!

I'm not seeing the note on the `enable_temp_vref` function, but I don't have strong opinions on how the return value is decided. The options: 1. (current approach), return true if...

There are [several users reporting](https://discord.com/channels/742820443487993987/1018866328116928512) that this message is still being logged on `0.24.0` and `0.23.3`

Thanks @miton18 for your contribution!

I'm looking at the CEF v26 specification from here: https://www.microfocus.com/documentation/arcsight/arcsight-smartconnectors-8.3/pdfdoc/cef-implementation-standard/cef-implementation-standard.pdf I'm not very familiar with this format, but the documentation seems to imply the most common format is with a...

> @fuchsnj shouldn't one use the syslog source (or parse_syslog) in that case to parse the syslog part of the message and use parse_cef for the CEF part ? It's...