Skip to content

Commit c391b93

Browse files
author
Manikanta Nallagatla
committed
debug
1 parent 11c6aa3 commit c391b93

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ namespace Microsoft.Azure.WebJobs.Script.WebHost.Models
99
public class FunctionsWorkerContainerAssignmentContext
1010
{
1111
[JsonProperty("assignmentContext")]
12-
public HostAssignmentContext AssignmentContext { get; }
12+
public HostAssignmentContextMani AssignmentContext { get; }
1313
}
1414
}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// Copyright (c) .NET Foundation. All rights reserved.
2+
// Licensed under the MIT License. See License.txt in the project root for license information.
3+
4+
using System;
5+
using System.Collections.Generic;
6+
using System.Linq;
7+
using Microsoft.Azure.WebJobs.Script.Workers.Rpc;
8+
using Microsoft.Extensions.Logging;
9+
using Newtonsoft.Json;
10+
11+
namespace Microsoft.Azure.WebJobs.Script.WebHost.Models
12+
{
13+
public class HostAssignmentContextMani
14+
{
15+
[JsonProperty("siteId")]
16+
public int SiteId { get; set; }
17+
18+
[JsonProperty("siteName")]
19+
public string SiteName { get; set; }
20+
}
21+
}

0 commit comments

Comments
 (0)