Skip to content

Commit f457039

Browse files
committed
Merge pull request Azure#1404 from markcowl/storageexe
Fixing execution issues with storage cmdlets
2 parents 51c3069 + 2b8305a commit f457039

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Common/Storage/Commands.Storage/Common/StorageCloudCmdletBase.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,11 @@ protected void DoInitChannelCurrentSubscription(bool force)
106106
}
107107
}
108108

109-
public override void ExecuteCmdlet()
109+
protected override void ProcessRecord()
110110
{
111111
Validate.ValidateInternetConnection();
112112
InitChannelCurrentSubscription();
113+
base.ProcessRecord();
113114
}
114115

115116

0 commit comments

Comments
 (0)