Skip to content

Commit 39b33ce

Browse files
fabiocavmhoeger
authored andcommitted
Removing resource utilization on startup path (#4353)
1 parent f6b7256 commit 39b33ce

File tree

3 files changed

+3
-15
lines changed

3 files changed

+3
-15
lines changed

src/WebJobs.Script/Properties/Resources.Designer.cs

Lines changed: 2 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/WebJobs.Script/Properties/Resources.resx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,6 @@
120120
<data name="DotNetFunctionEntryPointRulesMessage" xml:space="preserve">
121121
<value>Your function must contain a single public method, a public method named 'Run', or a public method matching the name specified in the 'entryPoint' metadata property.</value>
122122
</data>
123-
<data name="LanguageWorkerChannelSpecializationTrace" xml:space="preserve">
124-
<value>Starting language worker channel specialization</value>
125-
</data>
126123
<data name="ExtensionBundleConfigMissingId" xml:space="preserve">
127124
<value>The value of id property in extensionBundle section of {0} file is invalid or missing. See https://aka.ms/functions-hostjson for more information</value>
128125
</data>

src/WebJobs.Script/Rpc/LanguageWorkerChannelManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ public ILanguageWorkerChannel GetChannel(string language)
126126

127127
public async Task SpecializeAsync()
128128
{
129-
_logger.LogInformation(Resources.LanguageWorkerChannelSpecializationTrace);
129+
_logger.LogInformation("Starting language worker channel specialization");
130130
_workerRuntime = _environment.GetEnvironmentVariable(LanguageWorkerConstants.FunctionWorkerRuntimeSettingName);
131131
ILanguageWorkerChannel languageWorkerChannel = GetChannel(_workerRuntime);
132132
if (_workerRuntime != null && languageWorkerChannel != null)

0 commit comments

Comments
 (0)