We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 927aa17 commit 52c97b3Copy full SHA for 52c97b3
src/WebJobs.Script.WebHost/Controllers/InstanceController.cs
@@ -72,6 +72,10 @@ public IActionResult GetHttpHealthStatus()
72
73
private async Task<IActionResult> AssignInternal(HostAssignmentContext assignmentContext)
74
{
75
+ if (assignmentContext == null)
76
+ {
77
+ _logger.LogDebug($"Assignment context is null");
78
+ }
79
// before starting the assignment we want to perform as much
80
// up front validation on the context as possible
81
string error = await _instanceManager.ValidateContext(assignmentContext);
0 commit comments