-
Notifications
You must be signed in to change notification settings - Fork 25.6k
[ML][Transform] reset failure count when a transform aggregation page is handled successfully #76355
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ML][Transform] reset failure count when a transform aggregation page is handled successfully #76355
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -146,7 +146,7 @@ public TransformIndexer( | |
| this.checkpointProvider = ExceptionsHelper.requireNonNull(checkpointProvider, "checkpointProvider"); | ||
| this.auditor = transformServices.getAuditor(); | ||
| this.transformConfig = ExceptionsHelper.requireNonNull(transformConfig, "transformConfig"); | ||
| this.progress = progress != null ? progress : new TransformProgress(); | ||
| this.progress = transformProgress != null ? transformProgress : new TransformProgress(); | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. OK, this seemed like a bug, There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That was broken in #75459, which is a 7.15 change, and explains why it hasn't caused a bug report from a user yet.
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 😌 |
||
| this.lastCheckpoint = ExceptionsHelper.requireNonNull(lastCheckpoint, "lastCheckpoint"); | ||
| this.nextCheckpoint = ExceptionsHelper.requireNonNull(nextCheckpoint, "nextCheckpoint"); | ||
| this.context = ExceptionsHelper.requireNonNull(context, "context"); | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, this diff is a pain. The only difference here is the
resetReasonAndFailureCounterand the comments. I created a new method here so that this is testable.