We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58e0782 commit d5885e3Copy full SHA for d5885e3
src/multio/action/select/Select.cc
@@ -27,7 +27,8 @@ Select::Select(const ComponentConfiguration& compConf) :
27
ChainedAction{compConf}, selectors_{MatchReduce::construct(compConf.parsedConfig())} {}
28
29
void Select::executeImpl(Message msg) {
30
- if (matches(msg)) {
+ //pass through action for everything that is not a field, e.g. Flush
31
+ if (matches(msg) || (msg.tag() != message::Message::Tag::Field)) {
32
executeNext(std::move(msg));
33
}
34
0 commit comments