File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -43,9 +43,7 @@ internal string ConvertToRpcRawBinding(out BindingInfo bindingInfo)
4343
4444 foreach ( KeyValuePair < string , Object > pair in otherInformation )
4545 {
46- // Wow this sucks, lots of overserialization
4746 rawBindingObject . Add ( pair . Key , JToken . FromObject ( pair . Value ) ) ;
48- //Console.WriteLine(pair.Key);
4947 }
5048
5149 rawBinding = JsonConvert . SerializeObject ( rawBindingObject ) ;
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ namespace Microsoft.Azure.Functions.PowerShellWorker.WorkerIndexing
1414{
1515 internal class WorkerIndexingHelper
1616 {
17- const string GetFunctionsMetadataCmdletName = "Get-FunctionsMetadata" ;
17+ const string GetFunctionsMetadataCmdletName = "AzureFunctions.PowerShell.SDK \\ Get-FunctionsMetadata" ;
1818 internal static IEnumerable < RpcFunctionMetadata > IndexFunctions ( string baseDir )
1919 {
2020 List < RpcFunctionMetadata > indexedFunctions = new List < RpcFunctionMetadata > ( ) ;
@@ -34,7 +34,6 @@ internal static IEnumerable<RpcFunctionMetadata> IndexFunctions(string baseDir)
3434 throw new Exception ( PowerShellWorkerStrings . GetFunctionsMetadataMultipleResultsError ) ;
3535 }
3636 outputString = rawMetadata . ToString ( ) ;
37- //Console.WriteLine(rawMetadata.ToString());
3837 }
3938 ps . Commands . Clear ( ) ;
4039
You can’t perform that action at this time.
0 commit comments