Skip to content
This repository has been archived by the owner on Nov 14, 2022. It is now read-only.

[Wren:DS #35] Search for Ports 50 at a Time Instead of 1,000 #5

Open
wants to merge 1 commit into
base: sustaining/3.x
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public final class CliConstants {
public static final int DEFAULT_LDAP_CONNECT_TIMEOUT = 30000;

/** Default value for incrementing port number. */
public static final int PORT_INCREMENT = 1000;
public static final int PORT_INCREMENT = 50;

/** Default port number for the LDAP port. */
public static final int DEFAULT_LDAP_PORT = 389;
Expand Down