Skip to content

Commit 6926cce

Browse files
committed
Revert "[native] Revert coordinator and native process logs merging in e2e tests."
This reverts commit 01b70e0.
1 parent 556412c commit 6926cce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

presto-native-execution/src/test/java/com/facebook/presto/nativeworker/PrestoNativeQueryRunnerUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -526,8 +526,8 @@ public static Optional<BiFunction<Integer, URI, Process>> getExternalWorkerLaunc
526526
return new ProcessBuilder(prestoServerPath, "--logtostderr=1", "--v=1", "--velox_ssd_odirect=false")
527527
.directory(tempDirectoryPath.toFile())
528528
.redirectErrorStream(true)
529-
.redirectOutput(ProcessBuilder.Redirect.to(tempDirectoryPath.resolve("worker." + workerIndex + ".out").toFile()))
530-
.redirectError(ProcessBuilder.Redirect.to(tempDirectoryPath.resolve("worker." + workerIndex + ".out").toFile()))
529+
.redirectOutput(ProcessBuilder.Redirect.INHERIT)
530+
.redirectError(ProcessBuilder.Redirect.INHERIT)
531531
.start();
532532
}
533533
catch (IOException e) {

0 commit comments

Comments
 (0)