Skip to content

Commit

Permalink
Connect RequestProcessor to WorkerIndexingHelper
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthony Staples authored and Francisco-Gamino committed Oct 5, 2022
1 parent 64f8240 commit 3e50a6e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/RequestProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,8 @@ internal StreamingMessage ProcessFunctionMetadataRequest(StreamingMessage reques
StreamingMessage.ContentOneofCase.FunctionMetadataResponses,
out StatusResult status);

response.FunctionMetadataResponses.FunctionLoadRequestsResults.AddRange(WorkerIndexingHelper.FormatMetadata());

return response;
}

Expand Down
4 changes: 2 additions & 2 deletions src/WorkerIndexingHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ internal static void RegisterBinding(string bindingName, BindingInfo binding)
bindings[bindingName] = binding;
}

internal static FunctionMetadataResponses FormatMetadata()
internal static List<FunctionLoadRequest> FormatMetadata()
{

return null;
}
}
}

0 comments on commit 3e50a6e

Please sign in to comment.