Skip to content

Commit

Permalink
1.0.5
Browse files Browse the repository at this point in the history
Quobject.EngineIoClientDotNet.Client.EngineIOException: Transport not open Quobject#49
  • Loading branch information
mattqs committed Jan 28, 2018
1 parent 5f0425a commit 58b954f
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="WebSocket4Net, Version=0.15.0.9, Culture=neutral, PublicKeyToken=eb4e154b696bf72a, processorArchitecture=MSIL">
<HintPath>..\EngineIoClientDotNet.net35\packages\WebSocket4Net.0.15.0\lib\net35\WebSocket4Net.dll</HintPath>
<Reference Include="WebSocket4Net, Version=0.15.1.10, Culture=neutral, PublicKeyToken=eb4e154b696bf72a, processorArchitecture=MSIL">
<HintPath>..\EngineIoClientDotNet.net35\packages\WebSocket4Net.0.15.1\lib\net35\WebSocket4Net.dll</HintPath>
</Reference>
<Reference Include="xunit, Version=1.9.2.1705, Culture=neutral, PublicKeyToken=8d05b1bb7a6fdb6c, processorArchitecture=MSIL">
<HintPath>..\EngineIoClientDotNet.net35\packages\xunit.1.9.2\lib\net20\xunit.dll</HintPath>
Expand Down
2 changes: 1 addition & 1 deletion Src/EngineIoClientDotNet.Tests.net35/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net35" />
<package id="SuperSocket.ClientEngine.Core" version="0.9.0" targetFramework="net35" />
<package id="System.Threading.Tasks.Unofficial" version="3.1" targetFramework="net35" />
<package id="WebSocket4Net" version="0.15.0" targetFramework="net35" />
<package id="WebSocket4Net" version="0.15.1" targetFramework="net35" />
<package id="xunit" version="1.9.2" targetFramework="net35" />
</packages>
16 changes: 13 additions & 3 deletions Src/EngineIoClientDotNet.mono/Client/Socket_net35.cs
Original file line number Diff line number Diff line change
Expand Up @@ -557,9 +557,19 @@ private void SetPing()
var log2 = LogManager.GetLogger(Global.CallerName());
log2.Info("EasyTimer SetPing start");

Ping();
SetHeartbeat(PingTimeout);
log2.Info("EasyTimer SetPing finish");
if (Upgrading)
{
// skip this ping during upgrade
SetPing();
log2.Info("skipping Ping during upgrade");
}
else if (ReadyState == ReadyStateEnum.OPEN)
{
Ping();
SetHeartbeat(PingTimeout);
log2.Info("EasyTimer SetPing finish");
}

}, (int)PingInterval);
}

Expand Down
4 changes: 2 additions & 2 deletions Src/EngineIoClientDotNet.net35/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.4")]
[assembly: AssemblyFileVersion("1.0.4")]
[assembly: AssemblyVersion("1.0.5")]
[assembly: AssemblyFileVersion("1.0.5")]
4 changes: 2 additions & 2 deletions Src/EngineIoClientDotNet.net40/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.4")]
[assembly: AssemblyFileVersion("1.0.4")]
[assembly: AssemblyVersion("1.0.5")]
[assembly: AssemblyFileVersion("1.0.5")]
4 changes: 2 additions & 2 deletions Src/EngineIoClientDotNet.net45/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.4")]
[assembly: AssemblyFileVersion("1.0.4")]
[assembly: AssemblyVersion("1.0.5")]
[assembly: AssemblyFileVersion("1.0.5")]
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<Description>This is the Engine.IO Client Library for C#.</Description>
<PackageProjectUrl>https://github.com/Quobject/EngineIoClientDotNet/</PackageProjectUrl>
<Version>1.0.4</Version>
<Version>1.0.5</Version>
<Copyright>Copyright © 2018</Copyright>
<RepositoryUrl>https://github.com/Quobject/EngineIoClientDotNet/</RepositoryUrl>
<AssemblyVersion>1.0.4.0</AssemblyVersion>
<FileVersion>1.0.4.0</FileVersion>
<AssemblyVersion>1.0.5.0</AssemblyVersion>
<FileVersion>1.0.5.0</FileVersion>
<RootNamespace>Quobject.EngineIoClientDotNet</RootNamespace>
<AssemblyName>EngineIoClientDotNet</AssemblyName>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion grunt/config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.4",
"version": "1.0.5",
"server": {
"port": 80,
"ssl_port": 443,
Expand Down

0 comments on commit 58b954f

Please sign in to comment.