Skip to content

Commit b487fa0

Browse files
committed
fix conflicts
1 parent e96443d commit b487fa0

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

services/apps/script_executor_worker/src/activities/cleanup/organization.ts

+9
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,12 @@ export async function deleteOrganization(orgId: string): Promise<void> {
2121
throw error
2222
}
2323
}
24+
25+
export async function queueOrgForAggComputation(orgId: string): Promise<void> {
26+
try {
27+
await svc.redis.sAdd('organizationIdsForAggComputation', orgId)
28+
} catch (error) {
29+
svc.log.error(error, 'Error adding organization to redis set!')
30+
throw error
31+
}
32+
}

0 commit comments

Comments
 (0)