Updated NuGet packages and removed short timeout.

This commit is contained in:
Erich Barnstedt 2017-08-04 20:37:43 +02:00
Родитель 2cab5b2b67
Коммит 45c6513e6b
2 изменённых файлов: 3 добавлений и 3 удалений

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

@ -37,8 +37,8 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Devices" Version="1.2.9" />
<PackageReference Include="Microsoft.Azure.Devices.Client" Version="1.3.1" />
<PackageReference Include="Microsoft.Azure.Devices" Version="1.3.0" />
<PackageReference Include="Microsoft.Azure.Devices.Client" Version="1.4.0" />
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua" Version="0.4.1" />
</ItemGroup>

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

@ -226,7 +226,7 @@ namespace Opc.Ua.Publisher
/// </summary>
public static async Task EndpointConnect(Uri endpointUrl)
{
EndpointDescription selectedEndpoint = CoreClientUtils.SelectEndpoint(endpointUrl.AbsoluteUri, true, 10);
EndpointDescription selectedEndpoint = CoreClientUtils.SelectEndpoint(endpointUrl.AbsoluteUri, true);
ConfiguredEndpoint configuredEndpoint = new ConfiguredEndpoint(selectedEndpoint.Server, EndpointConfiguration.Create(m_configuration));
configuredEndpoint.Update(selectedEndpoint);