Add max queue size functionality to CoroQueue and related components#53
Merged
semiversus merged 5 commits intomasterfrom Feb 12, 2026
Merged
Add max queue size functionality to CoroQueue and related components#53semiversus merged 5 commits intomasterfrom
semiversus merged 5 commits intomasterfrom
Conversation
Collaborator
phettberg
commented
Feb 11, 2026
- Introduced MaxQueueException for handling queue size limits.
- Updated CoroQueue to accept max_queue_size parameter.
- Modified MapAsync and SinkAsync to support max_queue_size.
- Added tests for queue size threshold behavior.
- Introduced MaxQueueException for handling queue size limits. - Updated CoroQueue to accept max_queue_size parameter. - Modified MapAsync and SinkAsync to support max_queue_size. - Added tests for queue size threshold behavior.
Collaborator
Author
|
@flofeurstein, could you please already review? I'll fix the CI faults later. |
Owner
|
Python 3.8 and Python 3.9 are end of life, so you can drop the support of them. |
- Update Python versions in CI workflow to include 3.12 and 3.13 - Add ruff for linting and coding style checks - Update test functions to solipsism even tloop
Removed old virtual eventloop (replaced by async-solipsism module)
Collaborator
Author
# pycodestyle (E, W)
# mccabe (C90)
# flake8-bugbear (B)
# flake8-async (ASYNC)
# flake8-builtins (A)
# flake8-annotations (ANN) not used
# flake8-quotes (Q) not used
# pylint (PLC, PLE, PLR, PLW) not used
# ...
[tool.ruff.lint]
select = ["E", "W", "C90", "A", "B", "ASYNC"]
[tool.ruff.lint.flake8-quotes]
inline-quotes = "single"
|
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.