Skip to content
This repository has been archived by the owner on Sep 10, 2021. It is now read-only.

Commit

Permalink
Fixed duplicate-ack for serial execution services
Browse files Browse the repository at this point in the history
- Moved to 0.1.5.1
  • Loading branch information
alandoherty committed Nov 26, 2018
1 parent 6450c3c commit c4b3ee5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Holon/Holon.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@

<PropertyGroup>
<TargetFramework>netstandard1.6</TargetFramework>
<Version>0.1.5</Version>
<Version>0.1.5.1</Version>
<Authors>Alan Doherty</Authors>
<Company>Alan Doherty</Company>
<Description>A minimal service and event bus with additional support for RPC</Description>
<Copyright>BattleCrate Ltd 2018</Copyright>
<PackageProjectUrl>https://github.com/alandoherty/holon-net</PackageProjectUrl>
<RepositoryUrl>https://github.com/alandoherty/holon-net</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<AssemblyVersion>0.1.5.0</AssemblyVersion>
<AssemblyVersion>0.1.5.1</AssemblyVersion>
<PackageLicenseUrl>https://github.com/alandoherty/holon-net/blob/master/LICENSE</PackageLicenseUrl>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageIconUrl>https://s3-eu-west-1.amazonaws.com/assets.alandoherty.co.uk/github/holon-net-nuget.png</PackageIconUrl>
<FileVersion>0.1.5.0</FileVersion>
<FileVersion>0.1.5.1</FileVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
2 changes: 2 additions & 0 deletions src/Holon/Services/Service.cs
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,8 @@ async void IObserver<InboundMessage>.OnNext(InboundMessage message) {
// decrement pending metric and increment completed
Interlocked.Decrement(ref _requestsPending);
Interlocked.Increment(ref _requestsCompleted);

return;
} else {
ServiceHandle(envelope);
}
Expand Down

0 comments on commit c4b3ee5

Please sign in to comment.