Skip to content

Commit

Permalink
Fixed build breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
Hovsep Mkrtchyan committed Dec 5, 2017
1 parent 3ac09fc commit 68b354d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ public static class VirtualMachineScaleSetStrategy
(o, p) => o.GetAsync(
p.ResourceGroupName, p.Name, p.CancellationToken),
(o, p) => o.CreateOrUpdateAsync(
p.ResourceGroupName, p.Name, p.Model, p.CancellationToken));
p.ResourceGroupName, p.Name, p.Model, p.CancellationToken),
_ => 180);

public static ResourceConfig<VirtualMachineScaleSet> CreateVirtualMachineScaleSetConfig(
this ResourceConfig<ResourceGroup> resourceGroup,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ public static class LoadBalancerStrategy
(o, p) => o.GetAsync(
p.ResourceGroupName, p.Name, null, p.CancellationToken),
(o, p) => o.CreateOrUpdateAsync(
p.ResourceGroupName, p.Name, p.Model, p.CancellationToken));
p.ResourceGroupName, p.Name, p.Model, p.CancellationToken),
_ => 120);

public static ResourceConfig<LoadBalancer> CreateLoadBalancerConfig(
this ResourceConfig<ResourceGroup> resourceGroup, string name)
Expand Down

0 comments on commit 68b354d

Please sign in to comment.