Skip to content

Commit

Permalink
Established proper defaults for the SignalR Hub endpoint definition, …
Browse files Browse the repository at this point in the history
…which when applied correctly to the receive endpoint were incorrect.
  • Loading branch information
phatboyg committed Mar 2, 2021
1 parent 6da89d6 commit 245cb8b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
@@ -1,4 +1,4 @@
version: 7.1.6.{build}
version: 7.1.7.{build}

branches:
only:
Expand Down
Expand Up @@ -18,11 +18,11 @@ public class HubConsumerDefinition<THub> :

public bool IsTemporary => true;

public int? PrefetchCount { get; private set; }
public int? PrefetchCount => default;

public int? ConcurrentMessageLimit { get; private set; }
public int? ConcurrentMessageLimit => default;

public bool ConfigureConsumeTopology { get; private set; }
public bool ConfigureConsumeTopology => true;

public string GetEndpointName(IEndpointNameFormatter formatter)
{
Expand Down

0 comments on commit 245cb8b

Please sign in to comment.