diff --git a/Microsoft.DotNet.Interactive.Jupyter/JupyterRequestContextHandler.cs b/Microsoft.DotNet.Interactive.Jupyter/JupyterRequestContextHandler.cs index cd335863e..3672687c9 100644 --- a/Microsoft.DotNet.Interactive.Jupyter/JupyterRequestContextHandler.cs +++ b/Microsoft.DotNet.Interactive.Jupyter/JupyterRequestContextHandler.cs @@ -48,6 +48,9 @@ public async Task Handle( case MessageTypeValues.InterruptRequest: await _interruptHandler.Handle(delivery.Command); break; + case MessageTypeValues.IsCompleteRequest: + await _isCompleteHandler.Handle(delivery.Command); + break; } return delivery.Complete();