Skip to content

Commit

Permalink
Merge branch 'master' into CON-3006-Update-insert-text-for-Legal-agre…
Browse files Browse the repository at this point in the history
…ement-v5-on-Your-agreements-page
  • Loading branch information
Paul Howes committed Jan 29, 2021
2 parents 85dc3c8 + 50e9df1 commit da06596
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/SFA.DAS.EmployerFinance.Jobs/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<appSettings>
<add key="ConfigurationStorageConnectionString" value="UseDevelopmentStorage=true" />
<add key="EnvironmentName" value="LOCAL" />
<add key="InstrumentationKey" value="" />
<add key="APPINSIGHTS_INSTRUMENTATIONKEY" value="" />
<add key="StorageConnectionString" value="UseDevelopmentStorage=true" />
</appSettings>
<connectionStrings>
Expand Down
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 28 * *")] TimerInfo timer,
[TimerTrigger("0 0 0 30 * *")] TimerInfo timer,
ILogger logger)
{
logger.LogInformation($"Starting {nameof(ExpireFundsJob)}");
Expand Down
2 changes: 1 addition & 1 deletion src/SFA.DAS.EmployerFinance.MessageHandlers/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<add key="ConfigurationStorageConnectionString" value="UseDevelopmentStorage=true" />
<add key="DeclarationsEnabled" value="both" />
<add key="EnvironmentName" value="LOCAL" />
<add key="InstrumentationKey" value="" />
<add key="APPINSIGHTS_INSTRUMENTATIONKEY" value="" />
<add key="StorageConnectionString" value="UseDevelopmentStorage=true" />
</appSettings>
<connectionStrings>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ public async Task<List<Account>> GetAllAccounts()
{
var result = await _db.Value.Database.Connection.QueryAsync<Account>(
sql: "select * from [employer_financial].[Account]",
transaction: _db.Value.Database.CurrentTransaction?.UnderlyingTransaction,
commandType: CommandType.Text);

return result.AsList();
Expand Down

0 comments on commit da06596

Please sign in to comment.