Skip to content

Commit 6dc77fd

Browse files
committed
Fix Issue #46 Slect-Object fails for Get-AzureStoreSimpleStorageAccountCredential
1 parent 76b34fd commit 6dc77fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ServiceManagement/StorSimple/Commands.StorSimple/Cmdlets/ServiceConfig/GetAzureStorSimpleStorageAccountCredential.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public override void ExecuteCmdlet()
3838
var allSACs = StorSimpleClient.GetAllStorageAccountCredentials();
3939
if (StorageAccountName == null)
4040
{
41-
WriteObject(allSACs);
41+
WriteObject(allSACs, true);
4242
WriteVerbose(string.Format(Resources.SACGet_StatusMessage, allSACs.Count, allSACs.Count > 1 ? "s" : string.Empty));
4343
return;
4444
}
@@ -60,4 +60,4 @@ public override void ExecuteCmdlet()
6060
}
6161
}
6262
}
63-
}
63+
}

0 commit comments

Comments
 (0)