We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e0196ba + 39dd122 commit 362f2cdCopy full SHA for 362f2cd
src/services/website/core.service.ts
@@ -27,9 +27,9 @@ async function deleteWebsiteSchedule(scheduleId: string): Promise<void> {
27
}
28
29
30
-async function terminateWebsiteWorkflow(workflowId: string): Promise<void> {
+async function terminateWebsiteWorkflow(communityId: string): Promise<void> {
31
try {
32
- await temporalWebsite.terminateWorkflow(workflowId);
+ await temporalWebsite.terminateWorkflow(`website:ingestor:${communityId}`);
33
} catch (error) {
34
logger.error(error, 'Failed to terminate website workflow.');
35
throw new ApiError(590, 'Failed to terminate website workflow.');
0 commit comments