You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[in-proc backport] Refactor Linux container management to avoid race condition that leads the host to initialize placeholder (warmup) function (#10958)
Copy file name to clipboardExpand all lines: release_notes.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,9 +3,11 @@
3
3
<!-- Please add your release notes in the following format:
4
4
- My change description (#PR)
5
5
-->
6
+
6
7
- Update Java Worker Version to [2.18.1](https://github.com/Azure/azure-functions-java-worker/releases/tag/2.18.1)
7
8
- Add support for new FeatureFlag `EnableAzureMonitorTimeIsoFormat` to enable iso time format for azmon logs for Linux Dedicated/EP Skus. (part of #7864)
8
9
- Update PowerShell worker to 4.0.4175 (sets defaultRuntimeVersion to 7.4 in worker.config.json)
9
10
- Fixing default DateTime bug with TimeZones in TimerTrigger (#10906)
10
11
- Add support for the release channel setting `WEBSITE_PlatformReleaseChannel` and use this value in extension bundles resolution.
11
12
- Bug fix for platform release channel bundles resolution casing issue and additional logging (#10921)
13
+
- Fix race condition that leads the host to initialize placeholder (warmup) function in Linux environments (#10848)
/// <param name="assignmentContext">The <see cref="HostAssignmentContext"/> that will be applied to the instance being assigned to the application.</param>
20
+
/// <returns><see langword="true"/> if environment validation succeeds; otherwise <see langword="false"/>.</returns>
/// Validates the assignment context and begins the assignment process in a "fire and forget" pattern.
25
+
/// </summary>
26
+
/// <param name="assignmentContext">The <see cref="HostAssignmentContext"/> that will be applied to the instance being assigned to the application.</param>
27
+
/// <returns><see langword="true"/> if environment validation succeeds; otherwise <see langword="false"/>.</returns>
awaitTask.Yield();// This may be called from within a lock. When AssignAsync is awaited, control flow will return to the caller and the lock will be released when it exits the lock scope.
0 commit comments