Skip to content

Commit

Permalink
Disable python buffering (#1171)
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtoLord authored Apr 19, 2024
1 parent 2b9181b commit ff55fa8
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,7 @@ private LzyProcess execInEnv(String command, @Nullable LogStream out) {
public LzyProcess runProcess(String[] command, @Nullable String[] envp, @Nullable String workingDir) {
List<String> envList = new ArrayList<>();
envList.add("LOCAL_MODULES=" + baseEnvWorkingDir);
envList.add("PYTHONUNBUFFERED=1");
if (envp != null) {
envList.addAll(Arrays.asList(envp));
}
Expand Down

0 comments on commit ff55fa8

Please sign in to comment.