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)
43
43
44
44
foreach ( KeyValuePair < string , Object > pair in otherInformation )
45
45
{
46
- // Wow this sucks, lots of overserialization
47
46
rawBindingObject . Add ( pair . Key , JToken . FromObject ( pair . Value ) ) ;
48
- //Console.WriteLine(pair.Key);
49
47
}
50
48
51
49
rawBinding = JsonConvert . SerializeObject ( rawBindingObject ) ;
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ namespace Microsoft.Azure.Functions.PowerShellWorker.WorkerIndexing
14
14
{
15
15
internal class WorkerIndexingHelper
16
16
{
17
- const string GetFunctionsMetadataCmdletName = "Get-FunctionsMetadata" ;
17
+ const string GetFunctionsMetadataCmdletName = "AzureFunctions.PowerShell.SDK \\ Get-FunctionsMetadata" ;
18
18
internal static IEnumerable < RpcFunctionMetadata > IndexFunctions ( string baseDir )
19
19
{
20
20
List < RpcFunctionMetadata > indexedFunctions = new List < RpcFunctionMetadata > ( ) ;
@@ -34,7 +34,6 @@ internal static IEnumerable<RpcFunctionMetadata> IndexFunctions(string baseDir)
34
34
throw new Exception ( PowerShellWorkerStrings . GetFunctionsMetadataMultipleResultsError ) ;
35
35
}
36
36
outputString = rawMetadata . ToString ( ) ;
37
- //Console.WriteLine(rawMetadata.ToString());
38
37
}
39
38
ps . Commands . Clear ( ) ;
40
39
You can’t perform that action at this time.
0 commit comments