modifications to ActionLink and ActionDialog controls, added logic to prevent IHostedService from blocking startup, made controller route prefix consistent in module template

This commit is contained in:
Shaun Walker
2020-07-17 15:09:05 -04:00
parent b02bdee8cb
commit bc73e5e3d0
6 changed files with 14 additions and 11 deletions

View File

@ -27,8 +27,10 @@ namespace Oqtane.Infrastructure
protected async Task ExecuteAsync(CancellationToken stoppingToken)
{
await Task.Yield(); // required so that this method does not block startup
try
{
{
while (!stoppingToken.IsCancellationRequested)
{
using (var scope = _serviceScopeFactory.CreateScope())