From 657051d871e0204a5897614837df5f2c8032fcf0 Mon Sep 17 00:00:00 2001 From: Maciej Dudkowski Date: Thu, 30 Apr 2026 00:34:16 -0400 Subject: [PATCH] Fix `activity/cancel_try_cancel/feature.ts` after breaking change in Activity Info --- features/activity/cancel_try_cancel/feature.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/activity/cancel_try_cancel/feature.ts b/features/activity/cancel_try_cancel/feature.ts index 54225000..3244ffda 100644 --- a/features/activity/cancel_try_cancel/feature.ts +++ b/features/activity/cancel_try_cancel/feature.ts @@ -68,7 +68,7 @@ const activitiesImpl = { // Send to signal await client.workflow - .getHandle(Context.current().info.workflowExecution.workflowId) + .getHandle(Context.current().info.workflowExecution!.workflowId) .signal(activityResultSignal, result); }, };