Skip to content
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

Implement RetryProgress for limiting retry attempts in stages #1890

Merged
merged 11 commits into from
Feb 28, 2024

Conversation

addisoncrump
Copy link
Collaborator

Addresses a scenario where comparison log tracing never completes as it gets stuck in a timeout loop.

@addisoncrump addisoncrump marked this pull request as draft February 27, 2024 15:40
@addisoncrump
Copy link
Collaborator Author

addisoncrump commented Feb 27, 2024

Okay, small hiccup: we need the implementation of NeverResume to be generic over the type which it is used by, but the only real way to do this I can find is using the nightmare fuel syntax in the last commit.

We can instead make a macro which defines NeverResume uniquely to avoid this, but... gross. This is actually not the case, we definitely still need generics over the full type because we would otherwise be unable to distinguish the variants of stages here. We may also be able to change the signature of StageProgress to accept the stage type it's associated with in the trait functions.

@addisoncrump
Copy link
Collaborator Author

Resolved the issues above by simply thinking.

@addisoncrump addisoncrump changed the title Implement NeverResume for marking testcases as skipped if resumed Implement LimitedTriesProgress for limiting retry attempts Feb 27, 2024
@addisoncrump addisoncrump marked this pull request as ready for review February 27, 2024 18:14
/// Apply a certain amount of tries that this stage will attempt to trace the input before
/// giving up and not processing the input again.
#[must_use]
pub fn with_tries(mut self, initial_tries: usize) -> Self {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

_re_tries?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

with_retries(1) would suggest that the input is run twice, not once like current behaviour.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would prefer that, simply because the name makes more sense (RetryStage, not TryStage)

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So, you would prefer that the value represents the number of retries? In other words, 0 retries = 1 try?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've just pushed this change.

@addisoncrump
Copy link
Collaborator Author

Gah, new clippy lints. I'll just fix those now...

@domenukk
Copy link
Member

Looks good! Some last clippy things and I proposed some name changes -> feel free to accept or discard, then merge :)

@domenukk domenukk changed the title Implement LimitedTriesProgress for limiting retry attempts Implement RetryProgress for limiting retry attempts in stages Feb 28, 2024
@addisoncrump addisoncrump merged commit 8c773a6 into main Feb 28, 2024
25 of 26 checks passed
@addisoncrump addisoncrump deleted the never-resume branch February 28, 2024 13:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants