Skip to content
Discussion options

You must be logged in to vote

Hey @a-a-ron-manzano, I'd need to see a bit more of your config, but I think that's because you have something like this:

output:
  broker:
    pattern: fan_out
    outputs:
      - processors:
          ...
      - processors:
          ...

What you really should have is this:

output:
  broker:
    pattern: fan_out
    outputs:
      - first_output:
          ...
        processors:
          ...
      - second_output:
          ...
        processors:
          ...

I guess in your case both first_output and second_output were stdout implicitly, but the linter got a bit more strict since then. If that's the case, then you can do this:

output:
  broker:
    pattern: fan_out
    outputs:
 …

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected by a-a-ron-manzano
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants