We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5fb711 commit 3cfcf06Copy full SHA for 3cfcf06
rpa-worker-application/src/main/java/io/camunda/rpa/worker/python/SystemPythonProvider.java
@@ -41,7 +41,7 @@ public Mono<Object> systemPython() {
41
}
42
43
private Mono<ProcessService.ExecutionResult> checkPythonInterpreter(Object exeName, UnaryOperator<ExecutionCustomizer> customizer) {
44
- return processService.execute(exeName, c -> customizer.apply(c).silent().arg("--version"))
+ return processService.execute(exeName, c -> customizer.apply(c).arg("--version"))
45
.filter(xr -> ! WINDOWS_NO_PYTHON_EXIT_CODES.contains(xr.exitCode()))
46
.filter(xr -> {
47
Matcher matcher = PYTHON_VERSION_PATTERN.matcher(xr.stdout());
0 commit comments