File tree 2 files changed +5
-5
lines changed
src/main/java/com/uber/cadence/serviceclient
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 9
9
queue : " workers"
10
10
docker : " *"
11
11
command : " ./gradlew --no-daemon test"
12
- timeout_in_minutes : 15
12
+ timeout_in_minutes : 30
13
13
retry :
14
14
automatic :
15
15
- exit_status : " *"
24
24
queue : " workers"
25
25
docker : " *"
26
26
command : " ./gradlew --no-daemon test"
27
- timeout_in_minutes : 15
27
+ timeout_in_minutes : 30
28
28
retry :
29
29
automatic :
30
30
- exit_status : " *"
39
39
queue : " workers"
40
40
docker : " *"
41
41
command : " ./gradlew --no-daemon test"
42
- timeout_in_minutes : 15
42
+ timeout_in_minutes : 30
43
43
retry :
44
44
automatic :
45
45
- exit_status : " *"
Original file line number Diff line number Diff line change @@ -29,9 +29,9 @@ public class ClientOptions {
29
29
private static final String LOCALHOST = "127.0.0.1" ;
30
30
31
31
/** Default RPC timeout used for all non long poll calls. */
32
- private static final long DEFAULT_RPC_TIMEOUT_MILLIS = 1000 ;
32
+ private static final long DEFAULT_RPC_TIMEOUT_MILLIS = 3 * 1000 ;
33
33
/** Default RPC timeout used for all long poll calls. */
34
- private static final long DEFAULT_POLL_RPC_TIMEOUT_MILLIS = 125 * 1000 ;
34
+ private static final long DEFAULT_POLL_RPC_TIMEOUT_MILLIS = 30 * 1000 ;
35
35
36
36
/** Default RPC timeout for QueryWorkflow */
37
37
private static final long DEFAULT_QUERY_RPC_TIMEOUT_MILLIS = 10 * 1000 ;
You can’t perform that action at this time.
0 commit comments