Skip to content

Commit 716d3a4

Browse files
author
Manikanta Nallagatla
committed
debug
1 parent 7d0682e commit 716d3a4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/WebJobs.Script.WebHost/Models/FunctionsWorkerContainerAssignmentContext.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ namespace Microsoft.Azure.WebJobs.Script.WebHost.Models
99
public class FunctionsWorkerContainerAssignmentContext
1010
{
1111
[JsonProperty("assignmentContext")]
12-
public HostAssignmentContext AssignmentContext { get; }
12+
public HostAssignmentContext AssignmentContext { get; private set; }
13+
// or, for C# 9+:
14+
// public HostAssignmentContext AssignmentContext { get; init; }
1315
}
1416
}

0 commit comments

Comments
 (0)