Github user dawidwys commented on a diff in the pull request:
https://github.com/apache/flink/pull/4153#discussion_r125005837
--- Diff:
flink-libraries/flink-cep/src/main/java/org/apache/flink/cep/pattern/Quantifier.java
---
@@ -153,9 +153,8 @@ public int hashCode() {
private final int to;
private Times(int from, int to) {
- Preconditions.checkArgument(from >= 0, "The from should
be a non-negative number greater than or equal to 0.");
+ Preconditions.checkArgument(from > 0, "The from should
be a positive number greater than 0.");
--- End diff --
Move to another JIRA/PR
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---