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

    https://github.com/apache/geode/pull/724#discussion_r134075750
  
    --- Diff: 
geode-core/src/test/java/org/apache/geode/internal/process/lang/AvailablePid.java
 ---
    @@ -30,37 +30,88 @@
      */
     public class AvailablePid {
     
    -  static final int LOWER_BOUND = 1;
    -  static final int UPPER_BOUND = 64000;
    +  static final int DEFAULT_LOWER_BOUND = 1;
    +  static final int DEFAULT_UPPER_BOUND = 64000;
       static final int DEFAULT_TIMEOUT_MILLIS = 60 * 1000;
     
    +  private final int lowerBound;
    +  private final int upperBound;
       private final Random random;
       private final int timeoutMillis;
     
       /**
    -   * Construct with no seed and default timeout of 1 minute.
    +   * Construct with:
    +   * <ul>
    +   * <li>default {@link Bounds} of {@link #DEFAULT_LOWER_BOUND} 
(inclusive) and
    +   * {@link #DEFAULT_UPPER_BOUND} (inclusive)
    +   * <li>Random with no see
    --- End diff --
    
    I think you meant "no see**d**"


---
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