This is an automated email from the ASF dual-hosted git repository.
alexey pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git
The following commit(s) were added to refs/heads/master by this push:
new a2fdba62d KUDU-3416: Fix javadoc build failure on non-Unicode systems
a2fdba62d is described below
commit a2fdba62d2129d0d7d0c2d0f175e8b2a6e2d2650
Author: Joe McDonnell <[email protected]>
AuthorDate: Sat Sep 24 15:13:06 2022 -0700
KUDU-3416: Fix javadoc build failure on non-Unicode systems
For a build of Kudu inside a Docker image where Unicode
is not the default, the :kudu-client:javadoc task fails with:
AsyncKuduClient.java:926: error: unmappable character for encoding ASCII
This is complaining about some Unicode parentheses in
AsyncKuduClient.java. To fix this issue, this changes the
Unicode parentheses to regular ASCII parentheses.
Testing:
- Tested by hand on a non-Unicode system
Change-Id: Ia2c2b2e20e6b6b0d649bedf5f2a0341bb62f2b19
Reviewed-on: http://gerrit.cloudera.org:8080/19196
Tested-by: Kudu Jenkins
Reviewed-by: Alexey Serbin <[email protected]>
---
.../src/main/java/org/apache/kudu/client/AsyncKuduClient.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/java/kudu-client/src/main/java/org/apache/kudu/client/AsyncKuduClient.java
b/java/kudu-client/src/main/java/org/apache/kudu/client/AsyncKuduClient.java
index 837c9f3c1..50cdae3f3 100644
--- a/java/kudu-client/src/main/java/org/apache/kudu/client/AsyncKuduClient.java
+++ b/java/kudu-client/src/main/java/org/apache/kudu/client/AsyncKuduClient.java
@@ -923,7 +923,7 @@ public class AsyncKuduClient implements AutoCloseable {
* specified, it only returns tables that satisfy a substring match.
* @param nameFilter an optional table name filter
* @param showSoftDeleted whether to display only regular (i.e. not soft
deleted)
- * tables or all tables(i.e. soft deleted tables and regular tables)
+ * tables or all tables (i.e. soft deleted tables and regular tables)
* @return a deferred that yields the list of table names
*/
public Deferred<ListTablesResponse> getTablesList(String nameFilter, boolean
showSoftDeleted) {