Skip to content

Commit b1ea07b

Browse files
author
meiliang86
authored
Update build badge (#274)
* Update build badge * Update default long poll timeout to 2min to match server side config
1 parent d6773ef commit b1ea07b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Java framework for Cadence [![Build Status](https://travis-ci.org/uber-java/cadence-client.svg?branch=master)](https://travis-ci.org/uber-java/cadence-client) [![Javadocs](https://www.javadoc.io/badge/com.uber.cadence/cadence-client.svg)](https://www.javadoc.io/doc/com.uber.cadence/cadence-client)
1+
# Java framework for Cadence [![Build Status](https://travis-ci.com/uber-java/cadence-client.svg?branch=master)](https://travis-ci.com/uber-java/cadence-client) [![Javadocs](https://www.javadoc.io/badge/com.uber.cadence/cadence-client.svg)](https://www.javadoc.io/doc/com.uber.cadence/cadence-client)
22

33

44
[Cadence](https://github.com/uber/cadence) is a distributed, scalable, durable, and highly available orchestration engine we developed at Uber Engineering to execute asynchronous long-running business logic in a scalable and resilient way.

src/main/java/com/uber/cadence/serviceclient/WorkflowServiceTChannel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ public class WorkflowServiceTChannel implements IWorkflowService {
111111
/** Default RPC timeout used for all non long poll calls. */
112112
private static final long DEFAULT_RPC_TIMEOUT_MILLIS = 1000;
113113
/** Default RPC timeout used for all long poll calls. */
114-
private static final long DEFAULT_POLL_RPC_TIMEOUT_MILLIS = 61 * 1000;
114+
private static final long DEFAULT_POLL_RPC_TIMEOUT_MILLIS = 121 * 1000;
115115

116116
/** Default RPC timeout for QueryWorkflow */
117117
private static final long DEFAULT_QUERY_RPC_TIMEOUT_MILLIS = 10000;

0 commit comments

Comments
 (0)