mirror of
https://github.com/kestra-io/kestra.git
synced 2025-12-19 18:05:41 -05:00
fix(filters): change label filtering to 'and' instead of 'or' (#8661)
* fix(filters): change label filtering to 'and' instead of 'or' link to #8489 * test(execution): add test to validate and behavior * test(execution): fix test
This commit is contained in:
@@ -47,6 +47,6 @@ public abstract class H2ExecutionRepositoryService {
|
||||
});
|
||||
|
||||
|
||||
return conditions.isEmpty() ? DSL.trueCondition() : DSL.or(conditions);
|
||||
return conditions.isEmpty() ? DSL.trueCondition() : DSL.and(conditions);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user