Skip to content

Commit 68b354d

Browse files
author
Hovsep Mkrtchyan
committed
Fixed build breaks
1 parent 3ac09fc commit 68b354d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/ResourceManager/Common/Commands.Common.Strategies/Compute/VirtualMachineScaleSetStrategy.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ public static class VirtualMachineScaleSetStrategy
2929
(o, p) => o.GetAsync(
3030
p.ResourceGroupName, p.Name, p.CancellationToken),
3131
(o, p) => o.CreateOrUpdateAsync(
32-
p.ResourceGroupName, p.Name, p.Model, p.CancellationToken));
32+
p.ResourceGroupName, p.Name, p.Model, p.CancellationToken),
33+
_ => 180);
3334

3435
public static ResourceConfig<VirtualMachineScaleSet> CreateVirtualMachineScaleSetConfig(
3536
this ResourceConfig<ResourceGroup> resourceGroup,

src/ResourceManager/Common/Commands.Common.Strategies/Network/LoadBalancerStrategy.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ public static class LoadBalancerStrategy
1515
(o, p) => o.GetAsync(
1616
p.ResourceGroupName, p.Name, null, p.CancellationToken),
1717
(o, p) => o.CreateOrUpdateAsync(
18-
p.ResourceGroupName, p.Name, p.Model, p.CancellationToken));
18+
p.ResourceGroupName, p.Name, p.Model, p.CancellationToken),
19+
_ => 120);
1920

2021
public static ResourceConfig<LoadBalancer> CreateLoadBalancerConfig(
2122
this ResourceConfig<ResourceGroup> resourceGroup, string name)

0 commit comments

Comments
 (0)