[pull] master from kevoreilly:master#499
Merged
Merged
Conversation
Bumps [h11](https://github.com/python-hyper/h11) from 0.14.0 to 0.16.0. - [Commits](python-hyper/h11@v0.14.0...v0.16.0) --- updated-dependencies: - dependency-name: h11 dependency-version: 0.16.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [pynacl](https://github.com/pyca/pynacl) from 1.5.0 to 1.6.2. - [Changelog](https://github.com/pyca/pynacl/blob/main/CHANGELOG.rst) - [Commits](pyca/pynacl@1.5.0...1.6.2) --- updated-dependencies: - dependency-name: pynacl dependency-version: 1.6.2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
--- updated-dependencies: - dependency-name: aiohttp dependency-version: 3.14.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [pyjwt](https://github.com/jpadilla/pyjwt) from 2.10.1 to 2.13.0. - [Release notes](https://github.com/jpadilla/pyjwt/releases) - [Changelog](https://github.com/jpadilla/pyjwt/blob/master/CHANGELOG.rst) - [Commits](jpadilla/pyjwt@2.10.1...2.13.0) --- updated-dependencies: - dependency-name: pyjwt dependency-version: 2.13.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [python-multipart](https://github.com/Kludex/python-multipart) from 0.0.27 to 0.0.31. - [Release notes](https://github.com/Kludex/python-multipart/releases) - [Changelog](https://github.com/Kludex/python-multipart/blob/main/CHANGELOG.md) - [Commits](Kludex/python-multipart@0.0.27...0.0.31) --- updated-dependencies: - dependency-name: python-multipart dependency-version: 0.0.31 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [cryptography](https://github.com/pyca/cryptography) from 44.0.1 to 48.0.1. - [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst) - [Commits](pyca/cryptography@44.0.1...48.0.1) --- updated-dependencies: - dependency-name: cryptography dependency-version: 48.0.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [ujson](https://github.com/ultrajson/ultrajson) from 5.12.1 to 5.13.0. - [Release notes](https://github.com/ultrajson/ultrajson/releases) - [Commits](ultrajson/ultrajson@5.12.1...5.13.0) --- updated-dependencies: - dependency-name: ujson dependency-version: 5.13.0 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [pydantic-settings](https://github.com/pydantic/pydantic-settings) from 2.13.1 to 2.14.2. - [Release notes](https://github.com/pydantic/pydantic-settings/releases) - [Commits](pydantic/pydantic-settings@v2.13.1...v2.14.2) --- updated-dependencies: - dependency-name: pydantic-settings dependency-version: 2.14.2 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
In multiworker ResultServer mode ([resultserver] multiworker = yes), each
per-VM worker is launched via multiprocessing.Process, which defaults to the
fork start method on Linux.
CAPE monkey-patches threading with gevent at startup, and gevent's Thread does
not implement CPython's Thread._reset_internal_locks. When a process that has
live gevent-patched threads (e.g. the Mitmdump and QEMUScreenshots auxiliary
threads) forks, CPython's threading._after_fork runs in the child and calls
_reset_internal_locks on every enumerated Thread, raising AttributeError on
each gevent Thread. The affected locks are left unreset in the child, which
intermittently deadlocks -- e.g. a later sniffer subprocess fork wedges the
analysis and the task never completes.
Create the per-VM worker processes (and their shared Value/Event) from a
multiprocessing.get_context("spawn") context. spawn starts a fresh interpreter
with no inherited threads, so threading._after_fork never runs against the
gevent Threads and the locks-unreset deadlock cannot occur. The Value/Event
come from the same spawn context so they are shared correctly across the spawn
boundary.
…ngs-2.14.2 Bump pydantic-settings from 2.13.1 to 2.14.2
Bump ujson from 5.12.1 to 5.13.0
…8.0.1 Bump cryptography from 44.0.1 to 48.0.1
…rt-0.0.31 Bump python-multipart from 0.0.27 to 0.0.31
Bump pyjwt from 2.10.1 to 2.13.0
Bump aiohttp from 3.13.2 to 3.14.0
Bump pynacl from 1.5.0 to 1.6.2
build(deps): bump h11 from 0.14.0 to 0.16.0
…pawn resultserver: spawn (not fork) the multiworker per-VM worker processes
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
See Commits and Changes for more details.
Created by
pull[bot] (v2.0.0-alpha.4)
Can you help keep this open source service alive? 💖 Please sponsor : )