Github user greghogan commented on a diff in the pull request:

    https://github.com/apache/flink/pull/4346#discussion_r132427211
  
    --- Diff: 
flink-libraries/flink-gelly-examples/src/main/java/org/apache/flink/graph/drivers/parameter/LongParameter.java
 ---
    @@ -52,16 +52,6 @@ public LongParameter(ParameterizedBase owner, String 
name) {
        public LongParameter setDefaultValue(long defaultValue) {
                super.setDefaultValue(defaultValue);
     
    -           if (hasMinimumValue) {
    -                   Util.checkParameter(defaultValue >= minimumValue,
    -                           "Default value (" + defaultValue + ") must be 
greater than or equal to minimum (" + minimumValue + ")");
    -           }
    -
    -           if (hasMaximumValue) {
    -                   Util.checkParameter(defaultValue <= maximumValue,
    -                           "Default value (" + defaultValue + ") must be 
less than or equal to maximum (" + maximumValue + ")");
    -           }
    -
    --- End diff --
    
    Right, `ExecutionConfig.DEFAULT_PARALLELISM` is currently `-1`. We're still 
checking the user configuration within the min and max bounds, it's only when 
no value is given that the default is used and now permitted to lie outside of 
the bounds.


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to