From a4991fd81ae0c8a4e1b24f743eb8c2774acd2f91 Mon Sep 17 00:00:00 2001 From: Kirin Patel Date: Wed, 21 Aug 2019 11:56:31 -0700 Subject: [PATCH] Enable error propagation from nbconvert to frontend (#1909) --- 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