From bace59ad2a796bda4fa74eb2a02cc044a9ca41c1 Mon Sep 17 00:00:00 2001 From: Kirin Patel Date: Wed, 21 Aug 2019 09:41:45 -0700 Subject: [PATCH] Enable error propagation from nbconvert to frontend --- backend/src/apiserver/visualization/exporter.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/src/apiserver/visualization/exporter.py b/backend/src/apiserver/visualization/exporter.py index 238a5c2ba65..19f02b6efef 100644 --- a/backend/src/apiserver/visualization/exporter.py +++ b/backend/src/apiserver/visualization/exporter.py @@ -85,7 +85,8 @@ def __init__( self.km.start_kernel() self.ep = ExecutePreprocessor( timeout=self.timeout, - kernel_name='python3' + kernel_name='python3', + allow_errors=True ) @staticmethod