This commit is contained in:
Hans Gschossmann 2017-09-12 20:18:41 +02:00
Родитель 553ba3ec41
Коммит 26c301250a
1 изменённых файлов: 9 добавлений и 1 удалений

Просмотреть файл

@ -68,7 +68,15 @@ namespace Publisher
try
{
OpcSessionsSemaphore.Wait();
opcSession = OpcSessions.DefaultIfEmpty(null).First(s => s.EndpointUri == publishNodeConfig.EndpointUri);
try
{
opcSession = OpcSessions.FirstOrDefault(s => s.EndpointUri == publishNodeConfig.EndpointUri);
}
catch
{
opcSession = null;
}
// add a new session.
if (opcSession == null)
{