Skip to content
This repository has been archived by the owner on Jul 21, 2023. It is now read-only.

Commit

Permalink
fixed error in conflict resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
danadesrosiers committed Mar 5, 2019
1 parent a4b59d3 commit de1b4e7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ServiceFabric.PubSubActors/BrokerServiceBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,8 @@ protected BrokerServiceBase(StatefulServiceContext serviceContext,
/// </summary>
/// <param name="reference">Reference to the Service or Actor to register.</param>
/// <param name="messageTypeName">Full type name of message object.</param>
/// <param name="routingKey">Optional routing key to filter messages based on content. 'Key=Value' where Key is a message property path and Value is the value to match with message payload content.</param>
/// <returns></returns>
public async Task SubscribeAsync(ReferenceWrapper reference, string messageTypeName, string routingKey)
public async Task SubscribeAsync(ReferenceWrapper reference, string messageTypeName)
{
await WaitForInitializeAsync(CancellationToken.None);

Expand Down

0 comments on commit de1b4e7

Please sign in to comment.