Skip to content

Commit 927aa17

Browse files
author
Manikanta Nallagatla
committed
rename function
1 parent b1315d1 commit 927aa17

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/WebJobs.Script.WebHost/Controllers/InstanceController.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public async Task<IActionResult> Assign([FromBody] EncryptedHostAssignmentContex
4141

4242
var assignmentContext = _startupContextProvider.SetContext(encryptedAssignmentContext);
4343

44-
return await assignInternal(assignmentContext);
44+
return await AssignInternal(assignmentContext);
4545
}
4646

4747
[HttpPost]
@@ -51,7 +51,7 @@ public async Task<IActionResult> Assign2([FromBody] FunctionsWorkerContainerAssi
5151
{
5252
_logger.LogDebug($"Starting container assignment for host : {Request?.Host}");
5353

54-
return await assignInternal(workerAssignmentContext.AssignmentContext);
54+
return await AssignInternal(workerAssignmentContext.AssignmentContext);
5555
}
5656

5757
[HttpGet]
@@ -70,7 +70,7 @@ public IActionResult GetHttpHealthStatus()
7070
return Ok();
7171
}
7272

73-
private async Task<IActionResult> assignInternal(HostAssignmentContext assignmentContext)
73+
private async Task<IActionResult> AssignInternal(HostAssignmentContext assignmentContext)
7474
{
7575
// before starting the assignment we want to perform as much
7676
// up front validation on the context as possible

0 commit comments

Comments
 (0)