apache / drill

Apache Drill is a distributed MPP query layer for self describing data
https://drill.apache.org/
Apache License 2.0
1.93k stars 979 forks source link

Remove threadsafe warnings in fmpp Maven plugin #2928

Closed bdemers closed 2 months ago

bdemers commented 2 months ago

When using the fmpp Maven plugin on a multi-threaded build (e.g. --threads=# or via mvnd) a thread safe warning is printed to the console.

This is caused by a missing threadsafe annotation.

From a quick look through the code, it doesn't look like the plugin would have any issues with multi-threaded builds, so simply adding the missing annotation should resolve this issue.

Fixed in: #2926