Skip to content

Commit bd0fcfa

Browse files
committed
Fix build
Signed-off-by: Victor Chang <[email protected]>
1 parent ef790af commit bd0fcfa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/InformaticsGateway/Services/Storage/ObjectUploadService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,9 @@ private async Task StartWorker(int thread, CancellationToken cancellationToken)
123123

124124
public Task StartAsync(CancellationToken cancellationToken)
125125
{
126-
var task = Task.Run(async () =>
126+
var task = Task.Run(() =>
127127
{
128-
await BackgroundProcessing(cancellationToken);
128+
BackgroundProcessing(cancellationToken);
129129
}, CancellationToken.None);
130130

131131
Status = ServiceStatus.Running;

0 commit comments

Comments
 (0)