Skip to content

Commit

Permalink
Fix resource type
Browse files Browse the repository at this point in the history
  • Loading branch information
allxiao committed Apr 19, 2018
1 parent bf1ea85 commit daae454
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ static class SignalRStrategy
{
public static ResourceStrategy<SignalRResource> Strategy { get; }
= ResourceStrategy.Create(
type: new ResourceType("Microsoft.SignalR", "SignalR"),
type: new ResourceType("Microsoft.SignalRService", "SignalR"),
getOperations: (SignalRManagementClient client) => client.Signalr,
getAsync: (o, p) => o.GetAsync(p.ResourceGroupName, p.Name, p.CancellationToken),
createOrUpdateAsync: (o, p) => o.CreateOrUpdateAsync(
Expand Down

0 comments on commit daae454

Please sign in to comment.