Skip to content

Commit

Permalink
Update build badge (#274)
Browse files Browse the repository at this point in the history
* Update build badge

* Update default long poll timeout to 2min to match server side config
  • Loading branch information
meiliang86 authored Apr 25, 2019
1 parent d6773ef commit b1ea07b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 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)
# 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)


[Cadence](https:/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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public class WorkflowServiceTChannel implements IWorkflowService {
/** Default RPC timeout used for all non long poll calls. */
private static final long DEFAULT_RPC_TIMEOUT_MILLIS = 1000;
/** Default RPC timeout used for all long poll calls. */
private static final long DEFAULT_POLL_RPC_TIMEOUT_MILLIS = 61 * 1000;
private static final long DEFAULT_POLL_RPC_TIMEOUT_MILLIS = 121 * 1000;

/** Default RPC timeout for QueryWorkflow */
private static final long DEFAULT_QUERY_RPC_TIMEOUT_MILLIS = 10000;
Expand Down

0 comments on commit b1ea07b

Please sign in to comment.