diff --git a/Modules/DependencyInjection/Infrastructure/InjectionConcern.cs b/Modules/DependencyInjection/Infrastructure/InjectionConcern.cs index 93f16f63..520a4f0b 100644 --- a/Modules/DependencyInjection/Infrastructure/InjectionConcern.cs +++ b/Modules/DependencyInjection/Infrastructure/InjectionConcern.cs @@ -29,13 +29,13 @@ internal InjectionConcern(IHandler content, IServiceProvider services) public ValueTask PrepareAsync() => Content.PrepareAsync(); - public ValueTask HandleAsync(IRequest request) + public async ValueTask HandleAsync(IRequest request) { using var scope = Services.CreateScope(); request.Configure(Services, scope); - return Content.HandleAsync(request); + return await Content.HandleAsync(request); } #endregion