File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
flink-python/src/main/java/org/apache/flink/client/python Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 20
20
21
21
import org .apache .flink .client .deployment .application .UnsuccessfulExecutionException ;
22
22
import org .apache .flink .configuration .ConfigConstants ;
23
+ import org .apache .flink .configuration .ConfigurationUtils ;
23
24
import org .apache .flink .configuration .ReadableConfig ;
24
25
import org .apache .flink .core .fs .Path ;
25
26
import org .apache .flink .python .util .PythonDependencyUtils ;
@@ -368,10 +369,9 @@ static Process startPythonProcess(
368
369
// set the child process the output same as the parent process.
369
370
pythonProcessBuilder .redirectOutput (ProcessBuilder .Redirect .INHERIT );
370
371
}
371
-
372
372
LOG .info (
373
373
"Starting Python process with environment variables: {{}}, command: {}" ,
374
- env .entrySet ().stream ()
374
+ ConfigurationUtils . hideSensitiveValues ( env ) .entrySet ().stream ()
375
375
.map (e -> e .getKey () + "=" + e .getValue ())
376
376
.collect (Collectors .joining (", " )),
377
377
String .join (" " , commands ));
You can’t perform that action at this time.
0 commit comments