mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

jvergara
12.28.2007 838677b796449b50495c5046e5f125453b9cbde1
Fix for issue 1314.

The number of entries was capped to 10 million. Change the maximum value to 10000 entries.
1 files modified
2 ■■■ changed files
opends/src/quicksetup/org/opends/quicksetup/QuickSetup.java 2 ●●● patch | view | raw | blame | history
opends/src/quicksetup/org/opends/quicksetup/QuickSetup.java
@@ -131,7 +131,7 @@
  private static final int MIN_NUMBER_ENTRIES = 1;
  private static final int MAX_NUMBER_ENTRIES = 10000000;
  private static final int MAX_NUMBER_ENTRIES = 10000;
  // Update period of the dialogs.
  private static final int UPDATE_PERIOD = 500;