Skip to content

Commit

Permalink
Update the diagnostic error message
Browse files Browse the repository at this point in the history
  • Loading branch information
96malhar committed Sep 19, 2024
1 parent dff351c commit 3904c30
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public static class DiagnosticDescriptors

public static readonly DiagnosticDescriptor MaximumHandlerLengthExceeded = new DiagnosticDescriptor(id: "AWSLambda0118",
title: "Maximum Handler Length Exceeded",
messageFormat: "The handler string '{0}' exceeds the maximum length of 127 characters. Please trim down your project namespace to stay within the character limit. Alternatively, you can switch to an image based deployment by setting the 'PackageType' to 'Image' to avoid the handler length restriction.",
messageFormat: "The handler string '{0}' exceeds the maximum length of 127 characters. Please trim down your project namespace to stay within the character limit.",
category: "AWSLambdaCSharpGenerator",
DiagnosticSeverity.Error,
isEnabledByDefault: true);
Expand Down

0 comments on commit 3904c30

Please sign in to comment.