Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[UNDERTOW-1142] fix of two minor typos in log messages #536

Merged
merged 1 commit into from
Aug 1, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions core/src/main/java/io/undertow/UndertowMessages.java
Original file line number Diff line number Diff line change
Expand Up @@ -149,10 +149,10 @@ public interface UndertowMessages {
@Message(id = 38, value = "Authentication failed, requested user name '%s'")
String authenticationFailed(final String userName);

@Message(id = 39, value = "To many query parameters, cannot have more than %s query parameters")
@Message(id = 39, value = "Too many query parameters, cannot have more than %s query parameters")
BadRequestException tooManyQueryParameters(int noParams);

@Message(id = 40, value = "To many headers, cannot have more than %s header")
@Message(id = 40, value = "Too many headers, cannot have more than %s header")
String tooManyHeaders(int noParams);

@Message(id = 41, value = "Channel is closed")
Expand Down