File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed
src/WebJobs.Script/Config
test/WebJobs.Script.Tests.Integration/Host Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -84,11 +84,6 @@ public ScriptHostConfiguration()
84
84
/// </summary>
85
85
public ICollection<string> Functions { get; set; }
86
86
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
-
92
87
/// <summary>
93
88
/// Gets or sets a value indicating the timeout duration for all functions. If null,
94
89
/// there is no timeout duration.
@@ -131,6 +126,11 @@ public ScriptHostConfiguration()
131
126
/// </summary>
132
127
public ILoggerFactoryBuilder LoggerFactoryBuilder { get; set; }
133
128
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
+
134
134
/// <summary>
135
135
/// Gets or sets a test hook for modifying the configuration after host.json has been processed.
136
136
/// </summary>
Original file line number Diff line number Diff line change @@ -125,7 +125,6 @@ public async Task StandbyMode_EndToEnd()
125
125
126
126
// verify logs
127
127
string[] logLines = traceWriter.Traces.Select(p => p.Message).ToArray();
128
- string text = string.Join(Environment.NewLine, logLines);
129
128
Assert.Equal(2, logLines.Count(p => p.Contains("Host is in standby mode")));
130
129
Assert.Equal(1, logLines.Count(p => p.Contains("Stopping Host")));
131
130
Assert.Equal(2, logLines.Count(p => p.Contains("Executed 'Functions.WarmUp' (Succeeded")));
You can’t perform that action at this time.
0 commit comments