Skip to content

Commit

Permalink
[hotfix] Fixes JobExceptionsInfoWithHistory equals method
Browse files Browse the repository at this point in the history
  • Loading branch information
XComp committed Sep 12, 2024
1 parent 8dc40ab commit b79cf32
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ public boolean equals(Object o) {
&& Objects.equals(failureLabels, that.failureLabels)
&& Objects.equals(taskName, that.taskName)
&& Objects.equals(location, that.location)
&& Objects.equals(location, that.endpoint);
&& Objects.equals(endpoint, that.endpoint);
}

@Override
Expand Down

0 comments on commit b79cf32

Please sign in to comment.