-
vector validator doesnt recognize variables across components resulting in "error[E652]: only objects can be merged" despite in theory, this would work. Eg when renaming / initialising .aggregator in test_remap, tapping input of test_remap shows .aggregator as initialized with {}. How should this best be dealt with ? [transforms.test_init] [transforms.test_remap] |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The issue here is that
|
Beta Was this translation helpful? Give feedback.
The issue here is that
test_remap
doesn't know that.aggregator
as an object as that type information isn't propagated across transforms (yet; this is something we are working on). You can do.aggregator = merge!(.aggregator, {"x": 1})
instead, though, or: