Skip to content

Commit 3cfcf06

Browse files
committed
FIX: Fixes from config testing
1 parent d5fb711 commit 3cfcf06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rpa-worker-application/src/main/java/io/camunda/rpa/worker/python/SystemPythonProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public Mono<Object> systemPython() {
4141
}
4242

4343
private Mono<ProcessService.ExecutionResult> checkPythonInterpreter(Object exeName, UnaryOperator<ExecutionCustomizer> customizer) {
44-
return processService.execute(exeName, c -> customizer.apply(c).silent().arg("--version"))
44+
return processService.execute(exeName, c -> customizer.apply(c).arg("--version"))
4545
.filter(xr -> ! WINDOWS_NO_PYTHON_EXIT_CODES.contains(xr.exitCode()))
4646
.filter(xr -> {
4747
Matcher matcher = PYTHON_VERSION_PATTERN.matcher(xr.stdout());

0 commit comments

Comments
 (0)