From 76e90141738de34110e360caf43baad9bdccd61b Mon Sep 17 00:00:00 2001 From: j Date: Sun, 17 Mar 2024 23:25:02 -0400 Subject: [PATCH] Configure for shutdown of session after execution --- src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.ts b/src/index.ts index 08f99bc..11f8ed8 100644 --- a/src/index.ts +++ b/src/index.ts @@ -41,6 +41,8 @@ async function startApplication() { // Initialize and start your workflow const workflowOrchestrator = new WorkflowOrchestrator(); await workflowOrchestrator.executeWorkflow(); + + await rDramaSessionManager.shutdown() } startApplication()