Skip to content

Commit 5a17e3a

Browse files
authored
chore: default rpc timeout to 60s (#88)
1 parent 55bb52b commit 5a17e3a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ingester-rpc/src/main/java/io/greptime/rpc/RpcOptions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ public class RpcOptions implements Copiable<RpcOptions> {
2828

2929
/**
3030
* RPC request default timeout in milliseconds
31-
* Default: 10000(10s)
31+
* Default: 60000(60s)
3232
*/
33-
private int defaultRpcTimeout = 10000;
33+
private int defaultRpcTimeout = 60000;
3434

3535
/**
3636
* Sets the maximum message size allowed to be received on a channel.

0 commit comments

Comments
 (0)