adjust timings for delays

This commit is contained in:
Stanley Dimant
2022-10-09 16:38:37 +02:00
parent 98f9db8a0f
commit 0d8a401f13
2 changed files with 2 additions and 2 deletions

View File

@@ -208,7 +208,7 @@ public class GrpcClientIdentificationService : IHostedService
}
else
{
await Task.Delay(25, cts).ConfigureAwait(false);
await Task.Delay(10, cts).ConfigureAwait(false);
}
}
}

View File

@@ -107,7 +107,7 @@ internal class IdentityService : IdentificationService.IdentificationServiceBase
await responseStream.WriteAsync(cur).ConfigureAwait(false);
}
await Task.Delay(250).ConfigureAwait(false);
await Task.Delay(10).ConfigureAwait(false);
}
}
catch