Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Commit

Permalink
Merge pull request #332 from Netflix/dev
Browse files Browse the repository at this point in the history
Always return 0 for the responsetimeout.
  • Loading branch information
v1r3n authored Sep 22, 2017
2 parents 9614e92 + 04268d6 commit 22f9f91
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -393,8 +393,9 @@ public void setTaskDefName(String taskDefName) {
*
* @return the timeout for task to send response. After this timeout, the task will be re-queued
*/
@Deprecated
public int getResponseTimeoutSeconds() {
return responseTimeoutSeconds;
return 0;
}

/**
Expand Down

0 comments on commit 22f9f91

Please sign in to comment.