Skip to content

Commit

Permalink
MINOR: Fix validateResourceNameIsNodeId's exception message (#19017)
Browse files Browse the repository at this point in the history
Reviewers: Chia-Ping Tsai <[email protected]>
  • Loading branch information
mingdaoy authored Feb 24, 2025
1 parent 6e76736 commit 289e958
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ void validateResourceNameIsNodeId(String resourceName) {
}
if (requestId != nodeId) {
throw new InvalidRequestException("Unexpected node id. Expected " + nodeId +
", but received " + nodeId);
", but received " + requestId);
}
}

Expand Down

0 comments on commit 289e958

Please sign in to comment.