-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1562 from romainx/fix-1423
Turn off ipython low-level output capture and forward
- Loading branch information
Showing
3 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Configuration file for ipython-kernel. | ||
# See <https://ipython.readthedocs.io/en/stable/config/options/kernel.html> | ||
|
||
# With IPython >= 6.0.0, all outputs to stdout/stderr are captured. | ||
# It is the case for subprocesses and output of compiled libraries like Spark. | ||
# Those logs now both head to notebook logs and in notebooks outputs. | ||
# Logs are particularly verbose with Spark, that is why we turn them off through this flag. | ||
# <https://github.com/jupyter/docker-stacks/issues/1423> | ||
|
||
# Attempt to capture and forward low-level output, e.g. produced by Extension | ||
# libraries. | ||
# Default: True | ||
c.IPKernelApp.capture_fd_output = False # noqa: F821 |