File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/InformaticsGateway/Services/Scu Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ public ScuService(IServiceScopeFactory serviceScopeFactory,
56
56
_workQueue = _scope . ServiceProvider . GetService < IScuQueue > ( ) ?? throw new ServiceNotFoundException ( nameof ( IScuQueue ) ) ;
57
57
}
58
58
59
- private Task BackgroundProcessingAsync ( CancellationToken cancellationToken )
59
+ private Task BackgroundProcessing ( CancellationToken cancellationToken )
60
60
{
61
61
_logger . ServiceRunning ( ServiceName ) ;
62
62
while ( ! cancellationToken . IsCancellationRequested )
@@ -201,7 +201,7 @@ public Task StartAsync(CancellationToken cancellationToken)
201
201
{
202
202
var task = Task . Run ( async ( ) =>
203
203
{
204
- await BackgroundProcessingAsync ( cancellationToken ) . ConfigureAwait ( false ) ;
204
+ await BackgroundProcessing ( cancellationToken ) . ConfigureAwait ( false ) ;
205
205
} , CancellationToken . None ) ;
206
206
207
207
Status = ServiceStatus . Running ;
You can’t perform that action at this time.
0 commit comments