Skip to content

Commit

Permalink
Fix the stream closed halibut bug. (#361)
Browse files Browse the repository at this point in the history
* Fix the stream closed halibut bug.

Where if octopus server closes the stream, tentacle will consumer 100%
CPU trying to read the rest of the stream.

The fix is actually in: OctopusDeploy/Halibut#142
  • Loading branch information
LukeButters authored Apr 25, 2022
1 parent 2006bbb commit 377161d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
<ItemGroup>
<PackageReference Include="Autofac" Version="4.6.2" />
<PackageReference Include="FluentValidation" Version="7.2.1" />
<PackageReference Include="Halibut" Version="4.4.9" />
<PackageReference Include="Halibut" Version="4.4.10" />
<PackageReference Include="MaterialDesignColors" Version="1.2.0" />
<PackageReference Include="MaterialDesignThemes" Version="2.5.0.1205" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

<ItemGroup>
<ProjectReference Include="..\Octopus.Tentacle\Octopus.Tentacle.csproj" />
<PackageReference Include="Halibut" Version="4.4.9" />
<PackageReference Include="Halibut" Version="4.4.10" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.10.0" />
<PackageReference Include="NUnit" Version="3.12.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.13.0" />
Expand Down
2 changes: 1 addition & 1 deletion source/Octopus.Tentacle/Octopus.Tentacle.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Halibut" Version="4.4.9" />
<PackageReference Include="Halibut" Version="4.4.10" />
<PackageReference Include="Microsoft.DotNet.Analyzers.Compatibility" Version="0.2.12-alpha">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
Expand Down

0 comments on commit 377161d

Please sign in to comment.