Skip to content

Commit

Permalink
Fix retries if the failure is due to missed heartbeats. (#451)
Browse files Browse the repository at this point in the history
* Fix retries if the failures is due to missed heartbeats.

* upgrade release version to 0.3.28
  • Loading branch information
goyalankit authored Jun 26, 2020
1 parent 232335b commit 4af32a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ ext.deps = [

allprojects {
group = "com.linkedin.tony"
project.version = "0.3.27"
project.version = "0.3.28"
}

task sourcesJar(type: Jar) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -558,8 +558,9 @@ private void reset() {
+ container.getNodeId().getHost());
}

// Reset the flag to track untracked processes.
// Reset the flags that indicate failure.
untrackedTaskFailed = false;
taskHasMissesHB = false;

// Reset session
session = sessionBuilder.build();
Expand Down

0 comments on commit 4af32a1

Please sign in to comment.