Skip to content

Commit

Permalink
Update schedule interval to 1hour SweepAllNodesWalletsJob (#397)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jossec101 authored Oct 17, 2024
1 parent b5737fb commit 2e3b411
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ public static void Main(string[] args)
.WithIdentity($"{nameof(SweepAllNodesWalletsJob)}Trigger")
.StartNow().WithSimpleSchedule(scheduleBuilder =>
{
scheduleBuilder.WithIntervalInMinutes(1).RepeatForever();
scheduleBuilder.WithIntervalInMinutes(60).RepeatForever();
});
});

Expand Down

0 comments on commit 2e3b411

Please sign in to comment.