Skip to content

Commit

Permalink
Increased timeout to 15 seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeByDrescher committed Nov 26, 2024
1 parent 7f04fea commit c1febf9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class CLIPythonManager {
private static final String PYTHON_EXE_NAME = OperatingSystemInfo.getInstance().isWindows() ? "python" : "python3";

private static CLIPythonManager instance = null;
private static final int DEFAULT_TIMEOUT = 7000; // was 600 seconds (10 minutes), now 5 seconds
private static final int DEFAULT_TIMEOUT = 15000; // was 600 seconds (10 minutes), now 15 seconds

private static final boolean USE_SHARED_SHELL = true;

Expand Down

0 comments on commit c1febf9

Please sign in to comment.