diff --git a/src/Holon/Holon.csproj b/src/Holon/Holon.csproj index 63e5bf9..c5edae5 100644 --- a/src/Holon/Holon.csproj +++ b/src/Holon/Holon.csproj @@ -2,7 +2,7 @@ netstandard1.6 - 0.1.5 + 0.1.5.1 Alan Doherty Alan Doherty A minimal service and event bus with additional support for RPC @@ -10,11 +10,11 @@ https://github.com/alandoherty/holon-net https://github.com/alandoherty/holon-net git - 0.1.5.0 + 0.1.5.1 https://github.com/alandoherty/holon-net/blob/master/LICENSE true https://s3-eu-west-1.amazonaws.com/assets.alandoherty.co.uk/github/holon-net-nuget.png - 0.1.5.0 + 0.1.5.1 diff --git a/src/Holon/Services/Service.cs b/src/Holon/Services/Service.cs index c7cb76a..dfd30fa 100644 --- a/src/Holon/Services/Service.cs +++ b/src/Holon/Services/Service.cs @@ -317,6 +317,8 @@ async void IObserver.OnNext(InboundMessage message) { // decrement pending metric and increment completed Interlocked.Decrement(ref _requestsPending); Interlocked.Increment(ref _requestsCompleted); + + return; } else { ServiceHandle(envelope); }