Akanksha-kedia opened a new pull request, #18698:
URL: https://github.com/apache/pinot/pull/18698
## Description
The Maven property for the libthrift dependency was declared as
`libthrift.verion` (missing the `s`) and referenced under the same misspelling,
so the build was not broken — but the property name is inconsistent with every
other `*.version` property in the file.
**Change:** rename the property declaration and its single use-site from
`libthrift.verion` to `libthrift.version`.
```xml
<!-- before -->
<libthrift.verion>0.23.0</libthrift.verion>
...
<version>${libthrift.verion}</version>
<!-- after -->
<libthrift.version>0.23.0</libthrift.version>
...
<version>${libthrift.version}</version>
```
## Checklist
- [x] Pure rename — no functional change
- [x] Both declaration and use-site updated together
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]