Skip to content

Commit 7c01149

Browse files
lindydonnamamaso
authored andcommitted
Improve error message for configurationSource. Fixes #1738
1 parent 56d2014 commit 7c01149

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/WebJobs.Script/Host/ScriptHost.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,7 @@ private void VerifyPrecompileStatus(IEnumerable<FunctionDescriptor> functions)
621621
if (illegalScriptAssemblies.Contains(scriptFile))
622622
{
623623
// Error. All entries pointing to the same dll must have the same value for IsDirect
624-
string msg = string.Format(CultureInfo.InvariantCulture, "Configuration error: All functions in {0} must have the same config precedence,",
624+
string msg = string.Format(CultureInfo.InvariantCulture, "Configuration error: all functions in {0} must have the same value for 'configurationSource'.",
625625
scriptFile);
626626

627627
// Adding a function error will cause this function to get ignored

0 commit comments

Comments
 (0)