youzipi opened a new issue, #16991:
URL: https://github.com/apache/pulsar/issues/16991
Master issue: #12271
(2022-08-08 branch=master)
I scan the broker, found **617** places to change.
we need to split them into multiple PRs.
```
- src/main: 176
- src/test: 441
- src/test/java/org/apache/pulsar/broker: 256
- src/test/java/org/apache/pulsar/broker/admin: 116
- src/test/java/org/apache/pulsar/client: 181
- src/test/java/org/apache/pulsar/common: 4
```
i plan to log `warn` first, after modify completely, turn it to `error`.
```xml
<plugin>
<groupId>org.gaul</groupId>
<artifactId>modernizer-maven-plugin</artifactId>
<configuration>
<!-- <failOnViolations>true</failOnViolations>-->
<failOnViolations>false</failOnViolations>
<javaVersion>8</javaVersion>
<!-- <violationLogLevel>error</violationLogLevel>-->
<violationLogLevel>warn</violationLogLevel>
</configuration>
<executions>
<execution>
<id>modernizer</id>
<phase>verify</phase>
<goals>
<goal>modernizer</goal>
</goals>
</execution>
</executions>
</plugin>
```
--
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]