Skip to content

Commit

Permalink
Merge pull request #2168 from SkillsFundingAgency/change-back-expiry-…
Browse files Browse the repository at this point in the history
…date

Change back expiry date
  • Loading branch information
cofaulco authored Feb 22, 2021
2 parents c282c08 + 6c5cafe commit 20e1511
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public ExpireFundsJob(
}

public async Task Run(
[TimerTrigger("0 0 0 30 * *")] TimerInfo timer,
[TimerTrigger("0 0 0 28 * *")] TimerInfo timer,
ILogger logger)
{
logger.LogInformation($"Starting {nameof(ExpireFundsJob)}");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public ImportLevyDeclarationsJob(IMessageSession messageSession)
_messageSession = messageSession;
}

public Task Run([TimerTrigger("0 0 15 23 * *")] TimerInfo timer, ILogger logger)
public Task Run([TimerTrigger("0 0 15 24 * *")] TimerInfo timer, ILogger logger)
{
return _messageSession.Send(new ImportLevyDeclarationsCommand());
}
Expand Down

0 comments on commit 20e1511

Please sign in to comment.