HADOOP-15941. Addendum patch. Contributed by Takanobu Asanuma.

This commit is contained in:
Akira Ajisaka 2019-01-16 10:28:08 +09:00
parent f280f52b20
commit 01405df87f
No known key found for this signature in database
GPG Key ID: C1EDBB9CA400FD50
2 changed files with 11 additions and 1 deletions

View File

@ -66,7 +66,7 @@ public void init(Class<?> protocol) {
/** /**
* Add an RPC processing time sample * Add an RPC processing time sample
* @param metName of the RPC call * @param name of the RPC call
* @param processingTime the processing time * @param processingTime the processing time
*/ */
//@Override // some instrumentation interface //@Override // some instrumentation interface

View File

@ -2037,6 +2037,16 @@
</additionalOptions> </additionalOptions>
</configuration> </configuration>
</plugin> </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerArgs combine.children="append">
<arg>--add-exports</arg>
<arg>java.naming/com.sun.jndi.ldap=ALL-UNNAMED</arg>
</compilerArgs>
</configuration>
</plugin>
</plugins> </plugins>
</build> </build>
</profile> </profile>