Skip to content

Commit 0d00302

Browse files
author
Manikanta Nallagatla
committed
debug
1 parent a0677ee commit 0d00302

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public IActionResult Assign2([FromBody] HostAssignmentContextMan assignmentConte
5454

5555
_logger.LogDebug($"Worker assignment context is: {JsonConvert.SerializeObject(assignmentContext)}");
5656

57-
_logger.LogDebug($"SiteName: {assignmentContext.EncryptedContext}");
57+
_logger.LogDebug($"SiteName: {assignmentContext.SiteName}");
5858

5959
//_logger.LogDebug($"SiteName: {assignmentContext.SiteName}, Siteid: {assignmentContext.SiteId}");
6060

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace Microsoft.Azure.WebJobs.Script.WebHost.Models
77
{
88
public class HostAssignmentContextMan
99
{
10-
[JsonProperty("encryptedContext")]
11-
public string EncryptedContext { get; set; }
10+
[JsonProperty("siteName")]
11+
public string SiteName { get; set; }
1212
}
1313
}

0 commit comments

Comments
 (0)