-
Notifications
You must be signed in to change notification settings - Fork 623
fix(coordinator): fix not-compatible-prover errors counting towards number of attempts #1619
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
Conversation
…umber of attempts
WalkthroughThis pull request updates the software version by changing the tag from "v4.4.94" to "v4.4.95" in the version file. Additionally, it modifies the control flow in the Changes
Sequence Diagram(s)sequenceDiagram
participant Caller
participant AssignMethod
participant CompatibilityCheck
participant Logger
Caller->>AssignMethod: call Assign()
AssignMethod->>CompatibilityCheck: Check prover version
CompatibilityCheck-->>AssignMethod: Return compatibility status
alt Incompatible Version
AssignMethod->>Logger: Log incompatible version (Debug)
AssignMethod->>Logger: Log session completion
AssignMethod-->>Caller: Return nil
else Compatible Version
AssignMethod->>Logger: Log session completion
AssignMethod-->>Caller: Continue processing
end
Possibly related PRs
Suggested labels
Suggested reviewers
Poem
Warning There were issues while running some tools. Please review the errors and either fix the tool’s configuration or disable the tool if it’s a critical failure. 🔧 golangci-lint (1.62.2)level=warning msg="[runner] Can't run linter goanalysis_metalinter: buildir: failed to load package zstd: could not load export data: no export data for "github.com/scroll-tech/da-codec/encoding/zstd"" 📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (4)
⏰ Context from checks skipped due to timeout of 90000ms (3)
🔇 Additional comments (7)
✨ Finishing Touches
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## develop #1619 +/- ##
===========================================
+ Coverage 42.11% 42.14% +0.03%
===========================================
Files 222 222
Lines 17741 17738 -3
===========================================
+ Hits 7471 7476 +5
+ Misses 9560 9554 -6
+ Partials 710 708 -2
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
…umber of attempts
Purpose or design rationale of this PR
Describe your change. Make sure to answer these three questions: What does this PR do? Why does it do it? How does it do it?
PR title
Your PR title must follow conventional commits (as we are doing squash merge for each PR), so it must start with one of the following types:
Deployment tag versioning
Has
tag
incommon/version.go
been updated or have you addedbump-version
label to this PR?Breaking change label
Does this PR have the
breaking-change
label?Summary by CodeRabbit
Chores
Refactor
These behind-the-scenes improvements help maintain optimal performance and reduce potential interruptions without altering the visible user interface.