Skip to content

Commit 7ce1967

Browse files
authored
[hotfix] Increase timeout for update metadata request (alibaba#542)
1 parent 040e559 commit 7ce1967

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fluss-client/src/main/java/com/alibaba/fluss/client/utils/MetadataUtils.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ public static Cluster sendMetadataRequestAndRebuildCluster(
153153
newPartitionIdByPath,
154154
newTablePathToTableInfo);
155155
})
156-
.get(5, TimeUnit.SECONDS); // TODO currently, we don't have timeout logic in
156+
.get(30, TimeUnit.SECONDS); // TODO currently, we don't have timeout logic in
157157
// RpcClient, it will let the get() block forever. So we
158158
// time out here
159159
}

0 commit comments

Comments
 (0)