Skip to content

Commit 7323229

Browse files
committed
stop-registry-importer remove redundant cmd switch from python call
1 parent b2e1d94 commit 7323229

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/fi/hsl/jore/importer/feature/batch/stop_registry/RunStopRegistryImporterTasklet.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public RepeatStatus execute(final StepContribution contribution, final ChunkCont
4444
workingDir,
4545
pythonCommand);
4646

47-
final ProcessBuilder pb = new ProcessBuilder(List.of(pythonCommand, "-u", scriptPath))
47+
final ProcessBuilder pb = new ProcessBuilder(List.of(pythonCommand, scriptPath))
4848
.directory(new File(workingDir))
4949
.redirectErrorStream(true);
5050
// Force unbuffered output from Python so logs appear in near real time.

0 commit comments

Comments
 (0)