Skip to content

Commit a391304

Browse files
authored
update bundles upgrade help link (#11160)
* update bundles upgrade help link * update release notes
1 parent c7192ec commit a391304

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

release_notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
- Adding activity sources for Durable and WebJobs (Kafka and RabbitMQ) (#11137)
77
- Add JitTrace Files for v4.1041
88
- Fix startup deadlock on transient exceptions (#11142)
9-
- Add warning log for end of support bundle version, any bundle version < 4 (#11075)
9+
- Add warning log for end of support bundle version, any bundle version < 4 (#11075), (#11160)

src/WebJobs.Script/Diagnostics/Extensions/LoggerExtension.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,12 +209,12 @@ internal static class LoggerExtension
209209
private static readonly Action<ILogger, string, int, int, Exception> _outdatedExtensionBundleFuture =
210210
LoggerMessage.Define<string, int, int>(LogLevel.Warning,
211211
new EventId(342, nameof(OutdatedExtensionBundle)),
212-
"Your current bundle version {currentVersion} will reach end of support on Aug 4, 2026. Upgrade to [{suggestedMinVersion}.*, {suggestedMaxVersion}.0.0). For more information, see https://aka.ms/functions-outdated-bundles");
212+
"Your current bundle version {currentVersion} will reach end of support on Aug 4, 2026. Upgrade to [{suggestedMinVersion}.*, {suggestedMaxVersion}.0.0). For more information, see https://aka.ms/FunctionsBundlesUpgrade");
213213

214214
private static readonly Action<ILogger, string, int, int, Exception> _outdatedExtensionBundlePast =
215215
LoggerMessage.Define<string, int, int>(LogLevel.Warning,
216216
new EventId(342, nameof(OutdatedExtensionBundle)),
217-
"Your current bundle version {currentVersion} has reached end of support on Aug 4, 2026. Upgrade to [{suggestedMinVersion}.*, {suggestedMaxVersion}.0.0). For more information, see https://aka.ms/functions-outdated-bundles");
217+
"Your current bundle version {currentVersion} has reached end of support on Aug 4, 2026. Upgrade to [{suggestedMinVersion}.*, {suggestedMaxVersion}.0.0). For more information, see https://aka.ms/FunctionsBundlesUpgrade");
218218

219219
public static void PublishingMetrics(this ILogger logger, string metrics)
220220
{

0 commit comments

Comments
 (0)