Skip to content

Commit 72ecc47

Browse files
committed
fix(workflows): address code review feedback
1 parent 08c36d0 commit 72ecc47

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

workflows/quickstart/executeWithArguments.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ async function executeWorkflow(
8787
}
8888
} catch (e) {
8989
console.error(`Error executing workflow: ${e}`);
90+
throw e;
9091
}
9192
}
9293

workflows/quickstart/executeWithoutArguments.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ async function executeWorkflow(
7979
}
8080
} catch (e) {
8181
console.error(`Error executing workflow: ${e}`);
82+
throw e;
8283
}
8384
}
8485

0 commit comments

Comments
 (0)