Skip to content

Commit

Permalink
chore: schedule migration execution
Browse files Browse the repository at this point in the history
  • Loading branch information
daveleek committed Jan 24, 2024
1 parent bfa8316 commit 43e7a17
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/lib/features/scheduler/schedule-services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ export const scheduleServices = async (
configurationRevisionService,
eventAnnouncerService,
featureToggleService,
eventService,
versionService,
lastSeenService,
proxyService,
Expand Down Expand Up @@ -150,4 +151,10 @@ export const scheduleServices = async (
minutesToMilliseconds(3),
'updateAccountLastSeen',
);

schedulerService.schedule(
eventService.setEventCreatedByUserId.bind(eventService),
minutesToMilliseconds(2),
'setEventCreatedByUserId',
);
};

0 comments on commit 43e7a17

Please sign in to comment.