Skip to content

Commit

Permalink
Fix formatting issues in Queue.ts, SendReportsToSubscribers.ts, and R…
Browse files Browse the repository at this point in the history
…outes.ts
  • Loading branch information
simlarsen committed Sep 22, 2024
1 parent 3809b45 commit 03cb414
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Common/Server/Infrastructure/Queue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { ExpressRouter } from "../Utils/Express";

export enum QueueName {
Workflow = "Workflow",
Worker = "Worker"
Worker = "Worker",
}

export type QueueJob = Job;
Expand Down
2 changes: 1 addition & 1 deletion Worker/Jobs/StatusPage/SendReportsToSubscribers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RunCron(
"StatusPage:SendReportToSubscribers",
{
schedule: EVERY_MINUTE,
runOnStartup: false
runOnStartup: false,
},
async () => {
// get all scheduled events of all the projects.
Expand Down
1 change: 0 additions & 1 deletion Worker/Routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,6 @@ const WorkersFeatureSet: FeatureSet = {
},
{ concurrency: 100 },
);

} catch (err) {
logger.error("App Init Failed:");
logger.error(err);
Expand Down

0 comments on commit 03cb414

Please sign in to comment.