Skip to content

Commit

Permalink
Attempt with larger queue.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphw committed Jun 17, 2020
1 parent 15bb3eb commit 50f0fa6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1674,7 +1674,7 @@ public static VirtualMachine attach(String processId, int timeout, Dispatcher di
if (target == null) {
throw new IllegalStateException("Could not locate target process info in " + directory);
}
ServerSocket serverSocket = new ServerSocket(0, 1, InetAddress.getLocalHost());
ServerSocket serverSocket = new ServerSocket(0, 50, InetAddress.getLocalHost());
try {
serverSocket.setSoTimeout(timeout);
File receiver = new File(directory, target.getProperty("vmId"));
Expand Down

0 comments on commit 50f0fa6

Please sign in to comment.