Complete initialization of plugins in App::run#9066
Closed
B-head wants to merge 2 commits intobevyengine:mainfrom
Closed
Complete initialization of plugins in App::run#9066B-head wants to merge 2 commits intobevyengine:mainfrom
App::run#9066B-head wants to merge 2 commits intobevyengine:mainfrom
Conversation
App::runApp::run
…RunnerPlugin` (bevyengine#9054)" This reverts commit f213c14.
a3ffc47 to
266cdd5
Compare
Contributor
|
With #9054 merged, it looks like this can be closed. |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This pull request is mutually exclusive with #9054.
Objective
Completing plugin initialization in
App::runwill prevent new bugs caused by uninitialized plugins in the runner function.Solution
Wait for asynchronous tasks to complete, then for each calls
Plugin::finishandPlugin::cleanupinApp::run.Changelog
App::run.App::ready.App::finish.App::cleanup.Migration Guide
Remove the plugin initialization code in the runner function because plugin initialization is complete in
App::run.