We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0aeb143 commit caf6103Copy full SHA for caf6103
src/conditions/vrl.rs
@@ -113,7 +113,7 @@ impl Conditional for Vrl {
113
let result = result
114
.map(|value| match value {
115
Value::Boolean(boolean) => boolean,
116
- _ => false,
+ _ => panic!("VRL condition did not return a boolean type"),
117
})
118
.unwrap_or_else(|err| {
119
emit!(VrlConditionExecutionError {
0 commit comments