Hi,
Just updated on .net core 2.1 and works just great from my dev windows machine when connecting to deepstream 3.10 but when i deploy it to linux (docker) it works randomly. Most of the times stucks in
client.LoginAsync() forever really forever an hour and so.
var client = new DeepStreamClient(host, Convert.ToInt16(port), "deepstream",Convert.ToBoolean(secure));
if (await client.LoginAsync(user, pass))
{
var notifications = await _mediator.Send(new NotificationsQuery.GetNotifications(){UserId = userid});
IDeepStreamRecord record = await client.Records.GetRecordAsync($"user/{userid}");
await client.Records.SetWithAckAsync(record, notifications);
}
client.Dispose();
Till now was on .net core 2.0 and was working great in production.
Hi,
Just updated on .net core 2.1 and works just great from my dev windows machine when connecting to deepstream 3.10 but when i deploy it to linux (docker) it works randomly. Most of the times stucks in
client.LoginAsync() forever really forever an hour and so.
Till now was on .net core 2.0 and was working great in production.