Skip to content

Commit

Permalink
rename providerTimeoutValue
Browse files Browse the repository at this point in the history
  • Loading branch information
liliankasem committed Oct 15, 2024
1 parent 2eff07c commit ceacb74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/WebJobs.Script/Host/FunctionMetadataManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public FunctionMetadataManager(IOptions<ScriptJobHostOptions> scriptOptions, IFu
_environment = environment;

var providerTimeoutValue = _environment.GetEnvironmentVariableOrDefault(EnvironmentSettingNames.FunctionsMetadataProviderTimeout);
if (int.TryParse(timeoutValue, out int timeout))
if (int.TryParse(providerTimeoutValue, out int timeout))
{
MetadataProviderTimeoutInSeconds = timeout;
}
Expand Down

0 comments on commit ceacb74

Please sign in to comment.