Skip to content

Commit 63251fd

Browse files
committed
Minor cleanup
1 parent 209d451 commit 63251fd

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

src/WebJobs.Script/Config/ScriptHostConfiguration.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,6 @@ public ScriptHostConfiguration()
8484
/// </summary>
8585
public ICollection<string> Functions { get; set; }
8686

87-
/// <summary>
88-
/// Gets the set of <see cref="ScriptBindingProviders"/> to use when loading functions.
89-
/// </summary>
90-
public ICollection<ScriptBindingProvider> BindingProviders { get; internal set; }
91-
9287
/// <summary>
9388
/// Gets or sets a value indicating the timeout duration for all functions. If null,
9489
/// there is no timeout duration.
@@ -131,6 +126,11 @@ public ScriptHostConfiguration()
131126
/// </summary>
132127
public ILoggerFactoryBuilder LoggerFactoryBuilder { get; set; }
133128

129+
/// <summary>
130+
/// Gets or sets the set of <see cref="ScriptBindingProviders"/> to use when loading functions.
131+
/// </summary>
132+
internal ICollection<ScriptBindingProvider> BindingProviders { get; set; }
133+
134134
/// <summary>
135135
/// Gets or sets a test hook for modifying the configuration after host.json has been processed.
136136
/// </summary>

test/WebJobs.Script.Tests.Integration/Host/StandbyManagerTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,6 @@ public async Task StandbyMode_EndToEnd()
125125

126126
// verify logs
127127
string[] logLines = traceWriter.Traces.Select(p => p.Message).ToArray();
128-
string text = string.Join(Environment.NewLine, logLines);
129128
Assert.Equal(2, logLines.Count(p => p.Contains("Host is in standby mode")));
130129
Assert.Equal(1, logLines.Count(p => p.Contains("Stopping Host")));
131130
Assert.Equal(2, logLines.Count(p => p.Contains("Executed 'Functions.WarmUp' (Succeeded")));

0 commit comments

Comments
 (0)