Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
leafac committed Jun 23, 2024
1 parent 0397943 commit 3b617d1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions source/index.mts
Original file line number Diff line number Diff line change
Expand Up @@ -1406,7 +1406,7 @@ if (application.commandLineArguments.values.type === "backgroundJob")
backgroundJobIndex++
)
application.database.backgroundJob(
{ type: "feedWebSubSubscriptions.verify" },
{ type: "feedWebSubSubscriptions.verify", timeout: 5 * 1000, retries: 0 },
async (job: {
feedId: number;
"hub.mode": "subscribe" | "unsubscribe";
Expand Down Expand Up @@ -1806,7 +1806,11 @@ if (application.commandLineArguments.values.type === "email") {
if (application.commandLineArguments.values.type === "backgroundJob")
for (let backgroundJobIndex = 0; backgroundJobIndex < 8; backgroundJobIndex++)
application.database.backgroundJob(
{ type: "feedWebSubSubscriptions.dispatch" },
{
type: "feedWebSubSubscriptions.dispatch",
timeout: 5 * 1000,
retries: 0,
},
async (job: {
feedId: number;
feedEntryId: number;
Expand Down

0 comments on commit 3b617d1

Please sign in to comment.