We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e96443d commit b487fa0Copy full SHA for b487fa0
services/apps/script_executor_worker/src/activities/cleanup/organization.ts
@@ -21,3 +21,12 @@ export async function deleteOrganization(orgId: string): Promise<void> {
21
throw error
22
}
23
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