mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-15 05:24:14 +01:00
whitelist fixes, grpc stream fixes
This commit is contained in:
parent
e3e07fe117
commit
8164d737bf
5 changed files with 29 additions and 12 deletions
|
|
@ -72,7 +72,7 @@ internal class IdentityService : IdentificationService.IdentificationServiceBase
|
|||
_handler.RegisterServerForQueue(server.ServerId);
|
||||
_logger.LogInformation("Registered Server " + server.ServerId + " input stream");
|
||||
|
||||
while (await requestStream.MoveNext().ConfigureAwait(false))
|
||||
while (await requestStream.MoveNext(context.CancellationToken).ConfigureAwait(false))
|
||||
{
|
||||
var cur = requestStream.Current.IdentChange;
|
||||
if (cur == null) throw new System.Exception("Expected client ident change");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue