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

Commit 22f9f91

Browse files
authored
Merge pull request #332 from Netflix/dev
Always return 0 for the responsetimeout.
2 parents 9614e92 + 04268d6 commit 22f9f91

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

  • common/src/main/java/com/netflix/conductor/common/metadata/tasks

common/src/main/java/com/netflix/conductor/common/metadata/tasks/Task.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,8 +393,9 @@ public void setTaskDefName(String taskDefName) {
393393
*
394394
* @return the timeout for task to send response. After this timeout, the task will be re-queued
395395
*/
396+
@Deprecated
396397
public int getResponseTimeoutSeconds() {
397-
return responseTimeoutSeconds;
398+
return 0;
398399
}
399400

400401
/**

0 commit comments

Comments
 (0)