Skip to content

Commit

Permalink
Fix log message
Browse files Browse the repository at this point in the history
  • Loading branch information
Кирилл committed Aug 6, 2024
1 parent 45d6ab8 commit a745958
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ class UpstreamsConfigReader(
}
return upstream.nodeId?.let {
if (it !in 1..65535) {
log.warn("Invalid node-id: $it. Must be in range [1, 255].")
log.warn("Invalid node-id: $it. Must be in range [1, 65535].")
false
} else if (!knownNodeIds.add(it)) {
log.warn("Duplicated node-id: $it. Must be in unique.")
Expand Down

0 comments on commit a745958

Please sign in to comment.