Bump the pip group across 1 directory with 10 updates - #17
Open
dependabot[bot] wants to merge 1 commit into
Open
Bump the pip group across 1 directory with 10 updates#17dependabot[bot] wants to merge 1 commit into
dependabot[bot] wants to merge 1 commit into
Conversation
Bumps the pip group with 10 updates in the /extra/libcbor/doc/source directory: | Package | From | To | | --- | --- | --- | | [babel](https://github.com/python-babel/babel) | `2.8.0` | `2.9.1` | | [certifi](https://github.com/certifi/python-certifi) | `2019.11.28` | `2023.7.22` | | [flask](https://github.com/pallets/flask) | `1.1.1` | `2.2.5` | | [idna](https://github.com/kjd/idna) | `2.9` | `3.7` | | [jinja2](https://github.com/pallets/jinja) | `2.10.1` | `3.1.4` | | [pyyaml](https://github.com/yaml/pyyaml) | `5.3` | `5.4` | | [requests](https://github.com/psf/requests) | `2.23.0` | `2.32.2` | | [tornado](https://github.com/tornadoweb/tornado) | `6.0.4` | `6.4.1` | | [urllib3](https://github.com/urllib3/urllib3) | `1.25.8` | `1.26.19` | | [werkzeug](https://github.com/pallets/werkzeug) | `0.15.5` | `3.0.3` | Updates `babel` from 2.8.0 to 2.9.1 - [Release notes](https://github.com/python-babel/babel/releases) - [Changelog](https://github.com/python-babel/babel/blob/master/CHANGES.rst) - [Commits](python-babel/babel@v2.8.0...v2.9.1) Updates `certifi` from 2019.11.28 to 2023.7.22 - [Commits](certifi/python-certifi@2019.11.28...2023.07.22) Updates `flask` from 1.1.1 to 2.2.5 - [Release notes](https://github.com/pallets/flask/releases) - [Changelog](https://github.com/pallets/flask/blob/main/CHANGES.rst) - [Commits](pallets/flask@1.1.1...2.2.5) Updates `idna` from 2.9 to 3.7 - [Release notes](https://github.com/kjd/idna/releases) - [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.rst) - [Commits](kjd/idna@v2.9...v3.7) Updates `jinja2` from 2.10.1 to 3.1.4 - [Release notes](https://github.com/pallets/jinja/releases) - [Changelog](https://github.com/pallets/jinja/blob/main/CHANGES.rst) - [Commits](pallets/jinja@2.10.1...3.1.4) Updates `pyyaml` from 5.3 to 5.4 - [Release notes](https://github.com/yaml/pyyaml/releases) - [Changelog](https://github.com/yaml/pyyaml/blob/main/CHANGES) - [Commits](yaml/pyyaml@5.3...5.4) Updates `requests` from 2.23.0 to 2.32.2 - [Release notes](https://github.com/psf/requests/releases) - [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md) - [Commits](psf/requests@v2.23.0...v2.32.2) Updates `tornado` from 6.0.4 to 6.4.1 - [Changelog](https://github.com/tornadoweb/tornado/blob/master/docs/releases.rst) - [Commits](tornadoweb/tornado@v6.0.4...v6.4.1) Updates `urllib3` from 1.25.8 to 1.26.19 - [Release notes](https://github.com/urllib3/urllib3/releases) - [Changelog](https://github.com/urllib3/urllib3/blob/1.26.19/CHANGES.rst) - [Commits](urllib3/urllib3@1.25.8...1.26.19) Updates `werkzeug` from 0.15.5 to 3.0.3 - [Release notes](https://github.com/pallets/werkzeug/releases) - [Changelog](https://github.com/pallets/werkzeug/blob/main/CHANGES.rst) - [Commits](pallets/werkzeug@0.15.5...3.0.3) --- updated-dependencies: - dependency-name: babel dependency-type: direct:production dependency-group: pip - dependency-name: certifi dependency-type: direct:production dependency-group: pip - dependency-name: flask dependency-type: direct:production dependency-group: pip - dependency-name: idna dependency-type: direct:production dependency-group: pip - dependency-name: jinja2 dependency-type: direct:production dependency-group: pip - dependency-name: pyyaml dependency-type: direct:production dependency-group: pip - dependency-name: requests dependency-type: direct:production dependency-group: pip - dependency-name: tornado dependency-type: direct:production dependency-group: pip - dependency-name: urllib3 dependency-type: direct:production dependency-group: pip - dependency-name: werkzeug dependency-type: direct:production dependency-group: pip ... Signed-off-by: dependabot[bot] <support@github.com>
ben-thul
pushed a commit
that referenced
this pull request
Aug 19, 2026
…lability)
Debug-build CI runs of percona.acl_mdl_scalability sporadically crash
with:
debug_sync.cc:943: void debug_sync_remove_action(...): Assertion
`current_thd == nullptr || ds_control == current_thd->debug_sync_control'
failed.
#9 debug_sync_remove_action sql/debug_sync.cc:943
#10 debug_sync(THD*, ...) sql/debug_sync.cc:1951
#11 MDL_lock::visit_subgraph sql/mdl.cc:3924
#12 MDL_ticket::accept_visitor sql/mdl.cc:4062
#13 MDL_context::visit_subgraph sql/mdl.cc:4086
#14 MDL_lock::visit_subgraph sql/mdl.cc:4027 <-- recursion
...
#17 MDL_context::find_deadlock sql/mdl.cc:4111
The "acl_mdl_dead_lock" sync point (added by PS-7143) fires inside
MDL_lock::visit_subgraph() on src_ctx->get_thd() - the THD owning the
*visited* waiting ticket. At recursion depth >= 2 of the wait-for-graph
walk that THD belongs to another connection. debug_sync() then executes
and removes an action on that other connection's debug_sync_control,
which has no locking: the whole facility assumes a sync point is only
ever hit by the THD's owner thread.
In the test, 500 sessions each arm "acl_mdl_dead_lock" on themselves and
then run deadlock detection concurrently over a shared wait-for graph,
so one detector can consume/remove another session's action while that
session (or a third detector) does the same - a genuine data race on
ds_active and the action array, caught by the debug assertion.
Fix: fire the sync point only when the visited ticket belongs to the
thread running the deadlock detection (the initial node of the walk,
src_ctx->get_thd() == current_thd). That depth-1 hit is the only one
the test's SIGNAL dead_locked / WAIT_FOR resume_wait_graph choreography
relies on; each session now executes its own action exactly once, and
no thread ever touches a foreign debug_sync_control. Non-debug-sync
builds are unaffected.
Verified: percona.acl_mdl_scalability passes 4/4 consecutive --big-test
runs (debug build) with clean server shutdown.
Note: the rpl.rpl_innodb_auto_increment mysqld.2.err logs attached to
the CI failure show a fully clean shutdown; the failed-shutdown verdict
belonged to the acl_mdl_scalability server crash above.
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.
Bumps the pip group with 10 updates in the /extra/libcbor/doc/source directory:
2.8.02.9.12019.11.282023.7.221.1.12.2.52.93.72.10.13.1.45.35.42.23.02.32.26.0.46.4.11.25.81.26.190.15.53.0.3Updates
babelfrom 2.8.0 to 2.9.1Release notes
Sourced from babel's releases.
Changelog
Sourced from babel's changelog.