Skip to content

Commit f7722e5

Browse files
author
Manikanta Nallagatla
committed
debug
1 parent 1a4e0d3 commit f7722e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ public async Task<IActionResult> Assign([FromBody] EncryptedHostAssignmentContex
4848
[HttpPost]
4949
[Route("admin/instance/assign2")]
5050
[Authorize(Policy = PolicyNames.AdminAuthLevel)]
51-
public IActionResult Assign2([FromBody] FunctionsWorkerContainerAssignmentContext workerAssignmentContext)
51+
public IActionResult Assign2([FromBody] HostAssignmentContext assignmentContext)
5252
{
5353
_logger.LogDebug($"Starting container assignment for host : {Request?.Host}");
5454

55-
_logger.LogDebug($"Worker assignment context is: {JsonConvert.SerializeObject(workerAssignmentContext)}");
55+
_logger.LogDebug($"Worker assignment context is: {JsonConvert.SerializeObject(assignmentContext)}");
5656

5757
return Ok();
5858
//return await AssignInternal(workerAssignmentContext.AssignmentContext);

0 commit comments

Comments
 (0)