-
Notifications
You must be signed in to change notification settings - Fork 767
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
Rename QueueEvent::StartWork #6015
Merged
AndreiEres
merged 5 commits into
master
from
AndreiEres/issue5910-Rename-QueueEventStartWork
Oct 11, 2024
Merged
Rename QueueEvent::StartWork #6015
AndreiEres
merged 5 commits into
master
from
AndreiEres/issue5910-Rename-QueueEventStartWork
Oct 11, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AndreiEres
added
T0-node
This PR/Issue is related to the topic “node”.
I4-refactor
Code needs refactoring.
T8-polkadot
This PR/Issue is related to/affects the Polkadot network.
labels
Oct 10, 2024
/cmd prdoc --audience node_dev --bump patch |
s0me0ne-unkn0wn
approved these changes
Oct 11, 2024
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.
👍
sandreim
approved these changes
Oct 11, 2024
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.
LGTM! 👍🏼
AndreiEres
deleted the
AndreiEres/issue5910-Rename-QueueEventStartWork
branch
October 11, 2024 12:28
ordian
added a commit
that referenced
this pull request
Oct 11, 2024
* master: (28 commits) `substrate-node`: removed excessive polkadot-sdk features (#5925) Rename QueueEvent::StartWork (#6015) [ci] Remove quick-benchmarks-omni from GitLab (#6014) Set larger timeout for cmd.yml (#6006) Fix `0003-beefy-and-mmr` test (#6003) Remove redundant XCMs from dry run's forwarded xcms (#5913) Add RadiumBlock bootnodes to Coretime Polkadot Chain spec (#5967) Bump strum from 0.26.2 to 0.26.3 (#5943) Add PVF execution priority (#4837) Snowbridge V2 docs (#5902) Fix u256 conversion in BABE (#5994) [ci] Move test-linux-stable-no-try-runtime to GHA (#5979) Bump PoV request timeout (#5924) [Release/CI] Github flow to build `polkadot`/`polkadot-parachain` rc binaries and deb package (#5963) [ci] Remove short-benchmarks from Gitlab (#5988) Disable flaky tests reported in 5972/5973/5974 (#5976) Bump some dependencies (#5886) bump zombienet version and set request for k8s (#5968) [omni-bencher] Make all runtimes work (#5872) Omni-Node renamings (#5915) ...
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
I4-refactor
Code needs refactoring.
T0-node
This PR/Issue is related to the topic “node”.
T8-polkadot
This PR/Issue is related to/affects the Polkadot network.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
When we send
QueueEvent::StartWork
, we have already completed the execution. This may be a leftover of a previous logic change. Currently, the name is misleading, so it would be better to rename it toFinishWork
.polkadot-sdk/polkadot/node/core/pvf/src/execute/queue.rs
Lines 632 to 646 in c52675e
polkadot-sdk/polkadot/node/core/pvf/src/execute/queue.rs
Lines 361 to 363 in c52675e
Fixes #5910
Integration
Shouldn't affect downstream projects.