File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/WebJobs.Script.WebHost/Controllers Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ public async Task<IActionResult> Assign([FromBody] EncryptedHostAssignmentContex
41
41
42
42
var assignmentContext = _startupContextProvider . SetContext ( encryptedAssignmentContext ) ;
43
43
44
- return await assignInternal ( assignmentContext ) ;
44
+ return await AssignInternal ( assignmentContext ) ;
45
45
}
46
46
47
47
[ HttpPost ]
@@ -51,7 +51,7 @@ public async Task<IActionResult> Assign2([FromBody] FunctionsWorkerContainerAssi
51
51
{
52
52
_logger . LogDebug ( $ "Starting container assignment for host : { Request ? . Host } ") ;
53
53
54
- return await assignInternal ( workerAssignmentContext . AssignmentContext ) ;
54
+ return await AssignInternal ( workerAssignmentContext . AssignmentContext ) ;
55
55
}
56
56
57
57
[ HttpGet ]
@@ -70,7 +70,7 @@ public IActionResult GetHttpHealthStatus()
70
70
return Ok ( ) ;
71
71
}
72
72
73
- private async Task < IActionResult > assignInternal ( HostAssignmentContext assignmentContext )
73
+ private async Task < IActionResult > AssignInternal ( HostAssignmentContext assignmentContext )
74
74
{
75
75
// before starting the assignment we want to perform as much
76
76
// up front validation on the context as possible
You can’t perform that action at this time.
0 commit comments