Startup: serialize plugin schema initialization - #1115
Open
zardus wants to merge 1 commit into
Open
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
zardus
added a commit
that referenced
this pull request
Jul 26, 2026
## Summary - make the stats-worker cold-start regression deterministic by stopping the worker, clearing the target cache, and verifying its exact cold-start initialization - make database-shell errors fail tests immediately and surface PostgreSQL diagnostics - raise the test-step limit from 15 to 20 minutes; recent remote #1111/#1113 test steps took up to 16m33s ## Scope This PR is strictly CI/test-only. It changes exactly: - `.github/workflows/ci.yml` - `test/test_background_stats.py` - `test/utils.py` It contains no runtime, production, image-build, Compose, or dependency changes. ## Validation - Python syntax check - workflow YAML parse - whitespace check - full single-node and multi-node suites in GitHub Actions ## Stack The seven feature PRs (#1105, #1106, #1108, #1110, #1111, #1112, and #1113) each contain one feature-only commit directly above this branch. Shared schema-startup hardening is isolated in #1115. Image-build patch-runner hardening is isolated in #1116. Neither is a prerequisite for any feature PR. Merge this PR first, then retarget the nine sibling PRs to `master` before deleting this branch.
zardus
force-pushed
the
codex/serialize-dojo-schema-startup
branch
from
July 26, 2026 22:33
d864195 to
a6087eb
Compare
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.
Summary
db.metadata.create_all()calls with a PostgreSQL transaction-scoped advisory lockScope
This is shared application-startup hardening. It is intentionally separate from CI PR #1114 and is not a prerequisite for any of the seven feature PRs.
Validation