YARN-8939. Javadoc build fails in hadoop-yarn-csi. Contributed by Weiwei Yang.
This commit is contained in:
parent
1c0aae63a7
commit
553044818d
|
@ -204,6 +204,13 @@
|
|||
</excludes>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<configuration>
|
||||
<excludePackageNames>csi.v0</excludePackageNames>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
</project>
|
|
@ -33,7 +33,7 @@ public interface CsiClient {
|
|||
* Gets some basic info about the CSI plugin, including the driver name,
|
||||
* version and optionally some manifest info.
|
||||
* @return {@link GetPluginInfoResponse}
|
||||
* @throws IOException
|
||||
* @throws IOException when unable to get plugin info from the driver.
|
||||
*/
|
||||
GetPluginInfoResponse getPluginInfo() throws IOException;
|
||||
}
|
||||
|
|
|
@ -89,7 +89,6 @@ public final class CsiGrpcClient implements AutoCloseable {
|
|||
/**
|
||||
* Shutdown the communication channel gracefully,
|
||||
* wait for 5 seconds before it is enforced.
|
||||
* @throws InterruptedException
|
||||
*/
|
||||
@Override
|
||||
public void close() {
|
||||
|
|
Loading…
Reference in New Issue