Skip to content

Improve SessionRegistry active handle pruning#238

Merged
leynos merged 11 commits intomainfrom
codex/refactor-sessionregistry-active_handles-implementation
Aug 4, 2025
Merged

Improve SessionRegistry active handle pruning#238
leynos merged 11 commits intomainfrom
codex/refactor-sessionregistry-active_handles-implementation

Conversation

@leynos
Copy link
Copy Markdown
Owner

@leynos leynos commented Aug 1, 2025

Summary

  • simplify active_handles to prune and collect in a single retain pass
  • update the outbound messaging design doc to reflect the new approach

Testing

  • make lint
  • make test
  • make markdownlint

https://chatgpt.com/codex/tasks/task_e_688bf5ee5c1883229baf94a4eec8b09d

Summary by Sourcery

Streamline SessionRegistry.active_handles by consolidating pruning and handle collection into a single retain operation and align documentation with the new approach.

Enhancements:

  • Simplify SessionRegistry active_handles to prune stale entries and collect handles in a single retain pass

Documentation:

  • Update asynchronous outbound messaging design doc to reflect simplified active_handles implementation

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Aug 1, 2025

Warning

Rate limit exceeded

@leynos has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 5 minutes and 22 seconds before requesting another review.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

📥 Commits

Reviewing files that changed from the base of the PR and between df28eac and 7f9c60e.

📒 Files selected for processing (5)
  • AGENTS.md (1 hunks)
  • README.md (2 hunks)
  • docs/asynchronous-outbound-messaging-design.md (7 hunks)
  • docs/hardening-wireframe-a-guide-to-production-resilience.md (1 hunks)
  • src/session.rs (3 hunks)

Summary by CodeRabbit

  • Documentation
    • Improved formatting and clarity in multiple documentation files, including clearer explanations of session registry cleanup and locking behaviour.
    • Updated code examples to reflect current best practices for handling session registry entries.
  • Refactor
    • Refactored internal session registry methods for more efficient pruning and collection of active handles and IDs, consolidating operations for improved clarity and performance.
    • Enhanced internal documentation to better describe locking and concurrency considerations.

Walkthrough

Refactor the active_handles method in the SessionRegistry struct to use the retain method of DashMap, enabling simultaneous pruning of expired weak references and collection of live handles in a single pass. Do not alter any public interfaces or exported entity signatures.

Changes

Cohort / File(s) Change Summary
SessionRegistry active_handles refactor
src/session.rs
Refactor the active_handles and active_ids methods to use DashMap's retain for pruning stale entries and collecting live handles or IDs in one pass. Update get method to wrap upgraded weak references via PushHandle::from_arc. Expand documentation to clarify locking behaviour and recommend using prune() for explicit cleanup without handle collection.
Documentation update
docs/asynchronous-outbound-messaging-design.md, README.md
Adjust documentation formatting and content to reflect the refactored SessionRegistry methods, clarifying the pruning behaviour on lookup and active handles retrieval, and introducing the prune() method for explicit stale entry removal. Improve readability of example descriptions in README.

Sequence Diagram(s)

sequenceDiagram
    participant Caller
    participant SessionRegistry
    participant DashMap

    Caller->>SessionRegistry: call active_handles()
    SessionRegistry->>DashMap: retain (prune expired, collect live)
    DashMap-->>SessionRegistry: pruned map, vector of live handles
    SessionRegistry-->>Caller: return vector of live handles
Loading

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~7 minutes

Possibly related PRs

Suggested reviewers

  • codescene-delta-analysis

Poem

Prune the stale, let live ones thrive,
In one swift pass, the handles survive.
DashMap retains, the weak ones fall,
Refactored code, more elegant for all.
With logic streamlined and clutter gone,
The registry’s future marches on!

✨ Finishing Touches
  • 📝 Generate Docstrings
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment
  • Commit unit tests in branch codex/refactor-sessionregistry-active_handles-implementation

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai generate unit tests to generate unit tests for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@sourcery-ai
Copy link
Copy Markdown
Contributor

sourcery-ai Bot commented Aug 1, 2025

Reviewer's Guide

Refactored SessionRegistry.active_handles to consolidate pruning and handle collection into a single retain pass, and updated the outbound messaging design documentation to reflect this streamlined approach.

File-Level Changes

Change Details Files
Simplify active_handles implementation in SessionRegistry
  • Removed separate stale vector collection and subsequent removal loop
  • Introduced a single Vec to collect live handles
  • Replaced filter_map + manual removals with a HashMap::retain closure that prunes and collects
src/session.rs
Update design doc to mirror the new retain-based active_handles logic
  • Replaced filter_map example with retain-based pruning and handle collection
  • Aligned code sample in asynchronous-outbound-messaging-design.md with implementation changes
docs/asynchronous-outbound-messaging-design.md

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

Copy link
Copy Markdown
Contributor

@sourcery-ai sourcery-ai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @leynos - I've reviewed your changes and found some issues that need to be addressed.

  • Update the docs snippet to use PushHandle::from_arc(inner) (or the correct constructor) so it matches the Rust implementation.
  • active_handles now mutates the registry by pruning stale entries—consider extracting that cleanup into its own method to keep handle collection side-effect free.
  • Evaluate whether the retain-based pruning incurs higher contention or performance impact under concurrency compared to the previous remove_if approach.
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments
- Update the docs snippet to use PushHandle::from_arc(inner) (or the correct constructor) so it matches the Rust implementation.
- active_handles now mutates the registry by pruning stale entries—consider extracting that cleanup into its own method to keep handle collection side-effect free.
- Evaluate whether the retain-based pruning incurs higher contention or performance impact under concurrency compared to the previous remove_if approach.

Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

@leynos
Copy link
Copy Markdown
Owner Author

leynos commented Aug 1, 2025

@coderabbitai review

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Aug 1, 2025

✅ Actions performed

Review triggered.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

📜 Review details

Configuration used: CodeRabbit UI
Review profile: ASSERTIVE
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 6583724 and 5ee0889.

📒 Files selected for processing (2)
  • docs/asynchronous-outbound-messaging-design.md (1 hunks)
  • src/session.rs (1 hunks)
🧰 Additional context used
📓 Path-based instructions (2)
**/*.rs

⚙️ CodeRabbit Configuration File

**/*.rs: * Seek to keep the cyclomatic complexity of functions no more than 12.

  • Adhere to single responsibility and CQRS

  • Place function attributes after doc comments.

  • Do not use return in single-line functions.

  • Move conditionals with >2 branches into a predicate function.

  • Avoid unsafe unless absolutely necessary.

  • Every module must begin with a //! doc comment that explains the module's purpose and utility.

  • Comments and docs must follow en-GB-oxendict (-ize / -our) spelling and grammar

  • Lints must not be silenced except as a last resort.

    • #[allow] is forbidden.
    • Only narrowly scoped #[expect(lint, reason = "...")] is allowed.
    • No lint groups, no blanket or file-wide suppression.
    • Include FIXME: with link if a fix is expected.
  • Use rstest fixtures for shared setup and to avoid repetition between tests.

  • Replace duplicated tests with #[rstest(...)] parameterised cases.

  • Prefer mockall for mocks/stubs.

  • Prefer .expect() over .unwrap()

  • Ensure that any API or behavioural changes are reflected in the documentation in docs/

  • Ensure that any completed roadmap steps are recorded in the appropriate roadmap in docs/

  • Files must not exceed 400 lines in length

    • Large modules must be decomposed
    • Long match statements or dispatch tables should be decomposed by domain and collocated with targets
    • Large blocks of inline data (e.g., test fixtures, constants or templates) must be moved to external files and inlined at compile-time or loaded at run-time.

Files:

  • src/session.rs
**/*.md

⚙️ CodeRabbit Configuration File

**/*.md: * Avoid 2nd person or 1st person pronouns ("I", "you", "we")

  • Use en-GB-oxendict (-ize / -our) spelling and grammar
  • Paragraphs and bullets must be wrapped to 80 columns, except where a long URL would prevent this (in which case, silence MD013 for that line)
  • Code blocks should be wrapped to 120 columns.
  • Headings must not be wrapped.
  • Documents must start with a level 1 heading
  • Headings must correctly increase or decrease by no more than one level at a time
  • Use GitHub-flavoured Markdown style for footnotes and endnotes.
  • Numbered footnotes must be numbered by order of appearance in the document.

Files:

  • docs/asynchronous-outbound-messaging-design.md
🧬 Code Graph Analysis (1)
src/session.rs (1)
src/push.rs (1)
  • from_arc (100-100)
🔇 Additional comments (2)
src/session.rs (1)

67-75: Excellent refactoring of active_handles method.

The consolidation of pruning and collection into a single retain operation is a clean optimisation. The new implementation eliminates the need for separate iteration and explicit removal calls, making the code more efficient and easier to follow.

The logic correctly retains live entries while collecting their handles, and removes dead entries in one pass.

docs/asynchronous-outbound-messaging-design.md (1)

436-445: Documentation correctly updated to match implementation.

The documentation now accurately reflects the refactored active_handles method implementation. The consolidation of pruning and collection into a single retain operation is properly documented, maintaining consistency between the code and its specification.

Comment thread docs/asynchronous-outbound-messaging-design.md Outdated
Comment thread src/session.rs
@leynos
Copy link
Copy Markdown
Owner Author

leynos commented Aug 1, 2025

@coderabbitai review

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Aug 1, 2025

✅ Actions performed

Review triggered.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

@leynos
Copy link
Copy Markdown
Owner Author

leynos commented Aug 3, 2025

@coderabbitai review

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Aug 3, 2025

✅ Actions performed

Review triggered.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 4

🔭 Outside diff range comments (1)
docs/asynchronous-outbound-messaging-design.md (1)

419-445: Pre-allocate handles vector for efficiency (documentation code block).

Mirror the optimisation suggested for the implementation so that the example
reflects best practice.

-        let mut handles = Vec::new();
+        let mut handles = Vec::with_capacity(self.0.len());
📜 Review details

Configuration used: CodeRabbit UI
Review profile: ASSERTIVE
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 5ee0889 and d36d099.

📒 Files selected for processing (3)
  • README.md (2 hunks)
  • docs/asynchronous-outbound-messaging-design.md (2 hunks)
  • src/session.rs (1 hunks)
🧰 Additional context used
📓 Path-based instructions (2)
**/*.md

⚙️ CodeRabbit Configuration File

**/*.md: * Avoid 2nd person or 1st person pronouns ("I", "you", "we")

  • Use en-GB-oxendict (-ize / -our) spelling and grammar
  • Paragraphs and bullets must be wrapped to 80 columns, except where a long URL would prevent this (in which case, silence MD013 for that line)
  • Code blocks should be wrapped to 120 columns.
  • Headings must not be wrapped.
  • Documents must start with a level 1 heading
  • Headings must correctly increase or decrease by no more than one level at a time
  • Use GitHub-flavoured Markdown style for footnotes and endnotes.
  • Numbered footnotes must be numbered by order of appearance in the document.

Files:

  • README.md
  • docs/asynchronous-outbound-messaging-design.md
**/*.rs

⚙️ CodeRabbit Configuration File

**/*.rs: * Seek to keep the cyclomatic complexity of functions no more than 12.

  • Adhere to single responsibility and CQRS

  • Place function attributes after doc comments.

  • Do not use return in single-line functions.

  • Move conditionals with >2 branches into a predicate function.

  • Avoid unsafe unless absolutely necessary.

  • Every module must begin with a //! doc comment that explains the module's purpose and utility.

  • Comments and docs must follow en-GB-oxendict (-ize / -our) spelling and grammar

  • Lints must not be silenced except as a last resort.

    • #[allow] is forbidden.
    • Only narrowly scoped #[expect(lint, reason = "...")] is allowed.
    • No lint groups, no blanket or file-wide suppression.
    • Include FIXME: with link if a fix is expected.
  • Use rstest fixtures for shared setup and to avoid repetition between tests.

  • Replace duplicated tests with #[rstest(...)] parameterised cases.

  • Prefer mockall for mocks/stubs.

  • Prefer .expect() over .unwrap()

  • Ensure that any API or behavioural changes are reflected in the documentation in docs/

  • Ensure that any completed roadmap steps are recorded in the appropriate roadmap in docs/

  • Files must not exceed 400 lines in length

    • Large modules must be decomposed
    • Long match statements or dispatch tables should be decomposed by domain and collocated with targets
    • Large blocks of inline data (e.g., test fixtures, constants or templates) must be moved to external files and inlined at compile-time or loaded at run-time.

Files:

  • src/session.rs
🧬 Code Graph Analysis (1)
src/session.rs (1)
src/push.rs (1)
  • from_arc (100-100)
🪛 LanguageTool
README.md

[grammar] ~87-~87: Please add a punctuation mark at the end of paragraph.
Context: ...a binary protocol server. See the [full example](docs/rust-binary-router-library-design...

(PUNCTUATION_PARAGRAPH_END)

Comment thread docs/asynchronous-outbound-messaging-design.md
Comment thread README.md Outdated
Comment thread src/session.rs
Comment thread src/session.rs Outdated
@leynos
Copy link
Copy Markdown
Owner Author

leynos commented Aug 4, 2025

@coderabbitai review

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Aug 4, 2025

✅ Actions performed

Review triggered.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

@leynos
Copy link
Copy Markdown
Owner Author

leynos commented Aug 4, 2025

@coderabbitai review

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Aug 4, 2025

✅ Actions performed

Review triggered.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

📜 Review details

Configuration used: CodeRabbit UI
Review profile: ASSERTIVE
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between d36d099 and 6132162.

📒 Files selected for processing (3)
  • README.md (2 hunks)
  • docs/asynchronous-outbound-messaging-design.md (2 hunks)
  • src/session.rs (1 hunks)
🧰 Additional context used
📓 Path-based instructions (2)
**/*.md

⚙️ CodeRabbit Configuration File

**/*.md: * Avoid 2nd person or 1st person pronouns ("I", "you", "we")

  • Use en-GB-oxendict (-ize / -our) spelling and grammar
  • Paragraphs and bullets must be wrapped to 80 columns, except where a long URL would prevent this (in which case, silence MD013 for that line)
  • Code blocks should be wrapped to 120 columns.
  • Headings must not be wrapped.
  • Documents must start with a level 1 heading
  • Headings must correctly increase or decrease by no more than one level at a time
  • Use GitHub-flavoured Markdown style for footnotes and endnotes.
  • Numbered footnotes must be numbered by order of appearance in the document.

Files:

  • README.md
  • docs/asynchronous-outbound-messaging-design.md
**/*.rs

⚙️ CodeRabbit Configuration File

**/*.rs: * Seek to keep the cyclomatic complexity of functions no more than 12.

  • Adhere to single responsibility and CQRS

  • Place function attributes after doc comments.

  • Do not use return in single-line functions.

  • Move conditionals with >2 branches into a predicate function.

  • Avoid unsafe unless absolutely necessary.

  • Every module must begin with a //! doc comment that explains the module's purpose and utility.

  • Comments and docs must follow en-GB-oxendict (-ize / -our) spelling and grammar

  • Lints must not be silenced except as a last resort.

    • #[allow] is forbidden.
    • Only narrowly scoped #[expect(lint, reason = "...")] is allowed.
    • No lint groups, no blanket or file-wide suppression.
    • Include FIXME: with link if a fix is expected.
  • Use rstest fixtures for shared setup and to avoid repetition between tests.

  • Replace duplicated tests with #[rstest(...)] parameterised cases.

  • Prefer mockall for mocks/stubs.

  • Prefer .expect() over .unwrap()

  • Ensure that any API or behavioural changes are reflected in the documentation in docs/

  • Ensure that any completed roadmap steps are recorded in the appropriate roadmap in docs/

  • Files must not exceed 400 lines in length

    • Large modules must be decomposed
    • Long match statements or dispatch tables should be decomposed by domain and collocated with targets
    • Large blocks of inline data (e.g., test fixtures, constants or templates) must be moved to external files and inlined at compile-time or loaded at run-time.

Files:

  • src/session.rs
🧠 Learnings (1)
📚 Learning: applies to docs/src/push.rs : sessionregistry must store weak references to pushhandleinner to avoid...
Learnt from: CR
PR: leynos/wireframe#0
File: docs/asynchronous-outbound-messaging-design.md:0-0
Timestamp: 2025-07-27T13:30:30.121Z
Learning: Applies to docs/src/push.rs : SessionRegistry must store Weak references to PushHandleInner to avoid memory leaks and provide methods to get, insert, remove, and enumerate active handles.

Applied to files:

  • README.md
🧬 Code Graph Analysis (1)
src/session.rs (1)
src/push.rs (1)
  • from_arc (100-100)
🪛 LanguageTool
README.md

[grammar] ~87-~87: Please add a punctuation mark at the end of paragraph.
Context: ...a binary protocol server. See the [full example](docs/rust-binary-router-library-design...

(PUNCTUATION_PARAGRAPH_END)

🔇 Additional comments (2)
src/session.rs (1)

61-65: Doc comment fulfils earlier request.

The extra notes clearly explain the lock semantics and scope of prune().

README.md (1)

195-198: Documentation change looks good.

Second-person pronouns have been removed and the guidance matches the updated API.

Comment thread docs/asynchronous-outbound-messaging-design.md Outdated
Comment thread src/session.rs Outdated
Copy link
Copy Markdown

@codescene-delta-analysis codescene-delta-analysis Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Gates Failed
Enforce advisory code health rules (1 file with Code Duplication)

Gates Passed
5 Quality Gates Passed

See analysis details in CodeScene

Reason for failure
Enforce advisory code health rules Violations Code Health Impact
session.rs 1 advisory rule 10.00 → 9.39 Suppress

Quality Gate Profile: Pay Down Tech Debt
Want more control? Customize Code Health rules or catch issues early with our IDE extension and CLI tool.

Comment thread src/session.rs Outdated
Comment thread src/session.rs Outdated
Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 3

📜 Review details

Configuration used: CodeRabbit UI
Review profile: ASSERTIVE
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between ddfec52 and 9c93f81.

📒 Files selected for processing (2)
  • docs/hardening-wireframe-a-guide-to-production-resilience.md (1 hunks)
  • src/session.rs (4 hunks)
🧰 Additional context used
📓 Path-based instructions (4)
docs/**/*.md

📄 CodeRabbit Inference Engine (docs/contents.md)

Conventions for writing project documentation as described in the documentation style guide

docs/**/*.md: Use British English based on the Oxford English Dictionary (en-oxendict) for documentation text.
The word "outwith" is acceptable in documentation.
Keep US spelling when used in an API, for example color.
Use the Oxford comma in documentation text.
Treat company names as collective nouns in documentation (e.g., "Lille Industries are expanding").
Write headings in sentence case in documentation.
Use Markdown headings (#, ##, ###, etc.) in order without skipping levels.
Follow markdownlint recommendations for Markdown files.
Provide code blocks and lists using standard Markdown syntax.
Always provide a language identifier for fenced code blocks; use plaintext for non-code text.
Use - as the first level bullet and renumber lists when items change.
Prefer inline links using [text](url) or angle brackets around the URL; avoid reference-style links like [foo][bar].
Ensure blank lines before and after bulleted lists and fenced blocks in Markdown.
Ensure tables have a delimiter line below the header row in Markdown.
Expand any uncommon acronym on first use, for example, Continuous Integration (CI).
Wrap paragraphs at 80 columns in documentation.
Wrap code at 120 columns in documentation.
Do not wrap tables in documentation.
Use sequentially numbered footnotes referenced with [^1] and place definitions at the end of the file.
Where it adds clarity, include Mermaid diagrams in documentation.
When embedding figures, use ![alt text](path/to/image) and provide concise alt text describing the content.
Add a brief description before each Mermaid diagram in documentation for screen readers.

Document examples showing how to deprecate old message versions gracefully

Write the official documentation for the new features. Create separate guides for "Duplex Messaging & Pushes", "Streaming Responses", and "Message Fragmentation". Each guide must include runna...

Files:

  • docs/hardening-wireframe-a-guide-to-production-resilience.md
docs/**/*.{md,rs}

📄 CodeRabbit Inference Engine (docs/multi-packet-and-streaming-responses-design.md)

docs/**/*.{md,rs}: The official documentation and examples must exclusively use the declarative Response model for handler responses.
The async-stream pattern must be documented as the canonical approach for dynamic stream generation.

Files:

  • docs/hardening-wireframe-a-guide-to-production-resilience.md
**/*.md

📄 CodeRabbit Inference Engine (AGENTS.md)

**/*.md: Documentation must use en-GB-oxendict spelling and grammar. (EXCEPTION: the naming of the LICENSE file, which is to be left unchanged for community consistency.)
Markdown paragraphs and bullet points must be wrapped at 80 columns.
Code blocks in Markdown files must be wrapped at 120 columns.
Tables and headings in Markdown files must not be wrapped.
Use dashes (-) for list bullets in Markdown files.
Use GitHub-flavoured Markdown footnotes ([^1]) for references and footnotes.

Files:

  • docs/hardening-wireframe-a-guide-to-production-resilience.md

⚙️ CodeRabbit Configuration File

**/*.md: * Avoid 2nd person or 1st person pronouns ("I", "you", "we")

  • Use en-GB-oxendict (-ize / -our) spelling and grammar
  • Paragraphs and bullets must be wrapped to 80 columns, except where a long URL would prevent this (in which case, silence MD013 for that line)
  • Code blocks should be wrapped to 120 columns.
  • Headings must not be wrapped.
  • Documents must start with a level 1 heading
  • Headings must correctly increase or decrease by no more than one level at a time
  • Use GitHub-flavoured Markdown style for footnotes and endnotes.
  • Numbered footnotes must be numbered by order of appearance in the document.

Files:

  • docs/hardening-wireframe-a-guide-to-production-resilience.md
**/*.rs

📄 CodeRabbit Inference Engine (AGENTS.md)

**/*.rs: Function documentation must include clear examples demonstrating the usage and outcome of the function. Test documentation should omit examples where the example serves only to reiterate the test logic.
No single code file may be longer than 400 lines. Long switch statements or dispatch tables should be broken up by feature and constituents colocated with targets. Large blocks of test data should be moved to external data files.
Clippy warnings MUST be disallowed.
Fix any warnings emitted during tests in the code itself rather than silencing them.
Where a function is too long, extract meaningfully named helper functions adhering to separation of concerns and CQRS.
Where a function has too many parameters, group related parameters in meaningfully named structs.
Where a function is returning a large error consider using Arc to reduce the amount of data returned.
Write unit and behavioural tests for new functionality. Run both before and after making any change.
Every module must begin with a module level (//! ) comment explaining the module's purpose and utility.
Document public APIs using Rustdoc comments (///) so documentation can be generated with cargo doc.
Prefer immutable data and avoid unnecessary mut bindings.
Handle errors with the Result type instead of panicking where feasible.
Avoid unsafe code unless absolutely necessary and document any usage clearly.
Place function attributes after doc comments.
Do not use return in single-line functions.
Use predicate functions for conditional criteria with more than two branches.
Lints must not be silenced except as a last resort.
Lint rule suppressions must be tightly scoped and include a clear reason.
Prefer expect over allow.
Prefer .expect() over .unwrap().
Use concat!() to combine long string literals rather than escaping newlines with a backslash.
Prefer semantic error enums. Derive std::error::Error (via the thiserror crate) for any condition the caller might inspect, retry, or map to an HTTP status....

Files:

  • src/session.rs

⚙️ CodeRabbit Configuration File

**/*.rs: * Seek to keep the cyclomatic complexity of functions no more than 12.

  • Adhere to single responsibility and CQRS

  • Place function attributes after doc comments.

  • Do not use return in single-line functions.

  • Move conditionals with >2 branches into a predicate function.

  • Avoid unsafe unless absolutely necessary.

  • Every module must begin with a //! doc comment that explains the module's purpose and utility.

  • Comments and docs must follow en-GB-oxendict (-ize / -our) spelling and grammar

  • Lints must not be silenced except as a last resort.

    • #[allow] is forbidden.
    • Only narrowly scoped #[expect(lint, reason = "...")] is allowed.
    • No lint groups, no blanket or file-wide suppression.
    • Include FIXME: with link if a fix is expected.
  • Use rstest fixtures for shared setup and to avoid repetition between tests.

  • Replace duplicated tests with #[rstest(...)] parameterised cases.

  • Prefer mockall for mocks/stubs.

  • Prefer .expect() over .unwrap()

  • Ensure that any API or behavioural changes are reflected in the documentation in docs/

  • Ensure that any completed roadmap steps are recorded in the appropriate roadmap in docs/

  • Files must not exceed 400 lines in length

    • Large modules must be decomposed
    • Long match statements or dispatch tables should be decomposed by domain and collocated with targets
    • Large blocks of inline data (e.g., test fixtures, constants or templates) must be moved to external files and inlined at compile-time or loaded at run-time.

Files:

  • src/session.rs
🧬 Code Graph Analysis (1)
src/session.rs (1)
src/push.rs (1)
  • from_arc (100-100)
🪛 GitHub Check: build-test
src/session.rs

[warning] 32-32:
Diff in /home/runner/work/wireframe/wireframe/src/session.rs


[warning] 24-24:
Diff in /home/runner/work/wireframe/wireframe/src/session.rs


[warning] 104-104:
Diff in /home/runner/work/wireframe/wireframe/src/session.rs


[warning] 87-87:
Diff in /home/runner/work/wireframe/wireframe/src/session.rs

🪛 GitHub Actions: CI
src/session.rs

[warning] 15-15: Prettier formatting check failed. Code style differences detected in function formatting; consider running 'cargo fmt --all' to fix.


[warning] 24-24: Prettier formatting check failed. Code style differences detected in function formatting; consider running 'cargo fmt --all' to fix.


[warning] 32-32: Prettier formatting check failed. Code style differences detected in function formatting; consider running 'cargo fmt --all' to fix.


[warning] 78-78: Prettier formatting check failed. Code style differences detected in function formatting; consider running 'cargo fmt --all' to fix.


[warning] 87-87: Prettier formatting check failed. Code style differences detected in function formatting; consider running 'cargo fmt --all' to fix.


[warning] 104-104: Prettier formatting check failed. Code style differences detected in function formatting; consider running 'cargo fmt --all' to fix.

🔇 Additional comments (5)
docs/hardening-wireframe-a-guide-to-production-resilience.md (1)

215-217: Documentation correctly reflects the new constructor pattern.

The update from direct PushHandle(...) construction to PushHandle::from_arc aligns with the refactored implementation and demonstrates the proper usage pattern for wrapping upgraded weak references.

src/session.rs (4)

7-7: Import addition aligns with new functionality.

Adding Arc to the imports supports the retain_and_collect helper method that works with upgraded Arc<PushHandleInner<F>> references.


48-62: Excellent refactoring to eliminate code duplication.

The retain_and_collect helper method consolidates the common pattern of pruning stale weak references whilst collecting data from live handles. The pre-allocated capacity and closure-based approach provide both efficiency and flexibility.


85-91: Well-documented concurrency behaviour.

The enhanced documentation clearly explains that prune removes stale references without returning handles and notes the locking implications of DashMap::retain. This addresses previous concerns about concurrency semantics.


93-100: Successful refactoring with improved clarity.

The method now leverages the retain_and_collect helper, eliminating code duplication whilst maintaining identical functionality. The updated documentation about per-bucket write locks helps users understand the performance characteristics.

Comment thread src/session.rs
Comment thread src/session.rs
Comment thread src/session.rs Outdated
Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 3

🔭 Outside diff range comments (1)
docs/asynchronous-outbound-messaging-design.md (1)

415-456: Code example accurately reflects implementation changes.

The updated SessionRegistry example correctly shows the refactored implementation using retain_and_collect pattern and PushHandle::from_arc. The documentation about locking behaviour provides valuable performance guidance.

However, fix the hyphenation in the documentation:

-When a side-effect free snapshot is needed, `prune()` can be called
+When a side effect free snapshot is needed, `prune()` can be called
♻️ Duplicate comments (1)
src/session.rs (1)

18-34: Fix formatting inconsistencies.

Pipeline indicates these method definitions should use single-line format. Run cargo fmt --all to ensure consistent code style.

Expected format:

-    fn from(value: u64) -> Self {
-        Self(value)
-    }
+    fn from(value: u64) -> Self { Self(value) }
📜 Review details

Configuration used: CodeRabbit UI
Review profile: ASSERTIVE
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 9c93f81 and 7bc57f3.

📒 Files selected for processing (3)
  • README.md (2 hunks)
  • docs/asynchronous-outbound-messaging-design.md (7 hunks)
  • src/session.rs (4 hunks)
🧰 Additional context used
📓 Path-based instructions (4)
**/*.rs

📄 CodeRabbit Inference Engine (AGENTS.md)

**/*.rs: Function documentation must include clear examples demonstrating the usage and outcome of the function. Test documentation should omit examples where the example serves only to reiterate the test logic.
No single code file may be longer than 400 lines. Long switch statements or dispatch tables should be broken up by feature and constituents colocated with targets. Large blocks of test data should be moved to external data files.
Clippy warnings MUST be disallowed.
Fix any warnings emitted during tests in the code itself rather than silencing them.
Where a function is too long, extract meaningfully named helper functions adhering to separation of concerns and CQRS.
Where a function has too many parameters, group related parameters in meaningfully named structs.
Where a function is returning a large error consider using Arc to reduce the amount of data returned.
Write unit and behavioural tests for new functionality. Run both before and after making any change.
Every module must begin with a module level (//! ) comment explaining the module's purpose and utility.
Document public APIs using Rustdoc comments (///) so documentation can be generated with cargo doc.
Prefer immutable data and avoid unnecessary mut bindings.
Handle errors with the Result type instead of panicking where feasible.
Avoid unsafe code unless absolutely necessary and document any usage clearly.
Place function attributes after doc comments.
Do not use return in single-line functions.
Use predicate functions for conditional criteria with more than two branches.
Lints must not be silenced except as a last resort.
Lint rule suppressions must be tightly scoped and include a clear reason.
Prefer expect over allow.
Prefer .expect() over .unwrap().
Use concat!() to combine long string literals rather than escaping newlines with a backslash.
Prefer semantic error enums. Derive std::error::Error (via the thiserror crate) for any condition the caller might inspect, retry, or map to an HTTP status....

Files:

  • src/session.rs

⚙️ CodeRabbit Configuration File

**/*.rs: * Seek to keep the cyclomatic complexity of functions no more than 12.

  • Adhere to single responsibility and CQRS

  • Place function attributes after doc comments.

  • Do not use return in single-line functions.

  • Move conditionals with >2 branches into a predicate function.

  • Avoid unsafe unless absolutely necessary.

  • Every module must begin with a //! doc comment that explains the module's purpose and utility.

  • Comments and docs must follow en-GB-oxendict (-ize / -our) spelling and grammar

  • Lints must not be silenced except as a last resort.

    • #[allow] is forbidden.
    • Only narrowly scoped #[expect(lint, reason = "...")] is allowed.
    • No lint groups, no blanket or file-wide suppression.
    • Include FIXME: with link if a fix is expected.
  • Use rstest fixtures for shared setup and to avoid repetition between tests.

  • Replace duplicated tests with #[rstest(...)] parameterised cases.

  • Prefer mockall for mocks/stubs.

  • Prefer .expect() over .unwrap()

  • Ensure that any API or behavioural changes are reflected in the documentation in docs/

  • Ensure that any completed roadmap steps are recorded in the appropriate roadmap in docs/

  • Files must not exceed 400 lines in length

    • Large modules must be decomposed
    • Long match statements or dispatch tables should be decomposed by domain and collocated with targets
    • Large blocks of inline data (e.g., test fixtures, constants or templates) must be moved to external files and inlined at compile-time or loaded at run-time.

Files:

  • src/session.rs
**/*.md

📄 CodeRabbit Inference Engine (AGENTS.md)

**/*.md: Documentation must use en-GB-oxendict spelling and grammar. (EXCEPTION: the naming of the LICENSE file, which is to be left unchanged for community consistency.)
Markdown paragraphs and bullet points must be wrapped at 80 columns.
Code blocks in Markdown files must be wrapped at 120 columns.
Tables and headings in Markdown files must not be wrapped.
Use dashes (-) for list bullets in Markdown files.
Use GitHub-flavoured Markdown footnotes ([^1]) for references and footnotes.

Files:

  • README.md
  • docs/asynchronous-outbound-messaging-design.md

⚙️ CodeRabbit Configuration File

**/*.md: * Avoid 2nd person or 1st person pronouns ("I", "you", "we")

  • Use en-GB-oxendict (-ize / -our) spelling and grammar
  • Paragraphs and bullets must be wrapped to 80 columns, except where a long URL would prevent this (in which case, silence MD013 for that line)
  • Code blocks should be wrapped to 120 columns.
  • Headings must not be wrapped.
  • Documents must start with a level 1 heading
  • Headings must correctly increase or decrease by no more than one level at a time
  • Use GitHub-flavoured Markdown style for footnotes and endnotes.
  • Numbered footnotes must be numbered by order of appearance in the document.

Files:

  • README.md
  • docs/asynchronous-outbound-messaging-design.md
docs/**/*.md

📄 CodeRabbit Inference Engine (docs/contents.md)

Conventions for writing project documentation as described in the documentation style guide

docs/**/*.md: Use British English based on the Oxford English Dictionary (en-oxendict) for documentation text.
The word "outwith" is acceptable in documentation.
Keep US spelling when used in an API, for example color.
Use the Oxford comma in documentation text.
Treat company names as collective nouns in documentation (e.g., "Lille Industries are expanding").
Write headings in sentence case in documentation.
Use Markdown headings (#, ##, ###, etc.) in order without skipping levels.
Follow markdownlint recommendations for Markdown files.
Provide code blocks and lists using standard Markdown syntax.
Always provide a language identifier for fenced code blocks; use plaintext for non-code text.
Use - as the first level bullet and renumber lists when items change.
Prefer inline links using [text](url) or angle brackets around the URL; avoid reference-style links like [foo][bar].
Ensure blank lines before and after bulleted lists and fenced blocks in Markdown.
Ensure tables have a delimiter line below the header row in Markdown.
Expand any uncommon acronym on first use, for example, Continuous Integration (CI).
Wrap paragraphs at 80 columns in documentation.
Wrap code at 120 columns in documentation.
Do not wrap tables in documentation.
Use sequentially numbered footnotes referenced with [^1] and place definitions at the end of the file.
Where it adds clarity, include Mermaid diagrams in documentation.
When embedding figures, use ![alt text](path/to/image) and provide concise alt text describing the content.
Add a brief description before each Mermaid diagram in documentation for screen readers.

Document examples showing how to deprecate old message versions gracefully

Write the official documentation for the new features. Create separate guides for "Duplex Messaging & Pushes", "Streaming Responses", and "Message Fragmentation". Each guide must include runna...

Files:

  • docs/asynchronous-outbound-messaging-design.md
docs/**/*.{md,rs}

📄 CodeRabbit Inference Engine (docs/multi-packet-and-streaming-responses-design.md)

docs/**/*.{md,rs}: The official documentation and examples must exclusively use the declarative Response model for handler responses.
The async-stream pattern must be documented as the canonical approach for dynamic stream generation.

Files:

  • docs/asynchronous-outbound-messaging-design.md
🧠 Learnings (1)
📚 Learning: applies to docs/src/push.rs : sessionregistry must store weak references to pushhandleinner to avoid...
Learnt from: CR
PR: leynos/wireframe#0
File: docs/asynchronous-outbound-messaging-design.md:0-0
Timestamp: 2025-07-27T13:30:30.121Z
Learning: Applies to docs/src/push.rs : SessionRegistry must store Weak references to PushHandleInner to avoid memory leaks and provide methods to get, insert, remove, and enumerate active handles.

Applied to files:

  • README.md
🧬 Code Graph Analysis (1)
src/session.rs (1)
src/push.rs (1)
  • from_arc (100-100)
🪛 GitHub Check: build-test
src/session.rs

[warning] 32-32:
Diff in /home/runner/work/wireframe/wireframe/src/session.rs


[warning] 24-24:
Diff in /home/runner/work/wireframe/wireframe/src/session.rs


[warning] 106-106:
Diff in /home/runner/work/wireframe/wireframe/src/session.rs


[warning] 87-87:
Diff in /home/runner/work/wireframe/wireframe/src/session.rs

🪛 GitHub Actions: CI
src/session.rs

[warning] 15-15: Prettier formatting check failed. Function bodies should be in single-line format.


[warning] 24-24: Prettier formatting check failed. Function bodies should be in single-line format.


[warning] 32-32: Prettier formatting check failed. Function bodies should be in single-line format.


[warning] 78-78: Prettier formatting check failed. Function bodies should be in single-line format.


[warning] 87-87: Prettier formatting check failed. Function bodies should be in single-line format.


[warning] 106-106: Prettier formatting check failed. Function bodies should be in single-line format.

🪛 LanguageTool
README.md

[grammar] ~87-~87: Please add a punctuation mark at the end of paragraph.
Context: ...a binary protocol server. See the [full example](docs/rust-binary-router-library-design...

(PUNCTUATION_PARAGRAPH_END)

docs/asynchronous-outbound-messaging-design.md

[uncategorized] ~73-~73: Loose punctuation mark.
Context: ...low_priority_push_rx: mpsc::Receiver`: For standard, non-urgent background ...

(UNLIKELY_OPENING_PUNCTUATION)


[misspelling] ~452-~452: Did you mean “side effect” (=adverse effect, unintended consequence)? Open compounds are not hyphenated.
Context: ...ects the remaining live handles. When a side-effect free snapshot is needed, prune() can ...

(AFFECT_EFFECT)

🔇 Additional comments (7)
README.md (1)

195-199: LGTM!

The documentation accurately reflects the SessionRegistry implementation changes, clearly explaining the pruning behaviour and introducing the explicit prune() method. The note about locking contention provides valuable performance guidance.

docs/asynchronous-outbound-messaging-design.md (3)

42-48: LGTM!

Table formatting has been improved for better readability whilst preserving all content.


73-100: LGTM!

Numbering sequence has been corrected for proper list formatting.


165-165: LGTM!

Blank line addition improves document formatting and follows Markdown best practices.

src/session.rs (3)

7-7: LGTM!

Arc import addition is necessary for the new retain_and_collect helper method.


48-62: Excellent refactoring eliminates code duplication.

The retain_and_collect helper method consolidates the common pruning pattern used by both active_handles and active_ids. The implementation correctly handles weak reference upgrades, pre-allocates capacity for efficiency, and uses a closure parameter for flexible data collection.


93-101: LGTM!

The refactored implementation using retain_and_collect is more efficient and eliminates potential race conditions. The atomic pruning and collection in a single pass is a significant improvement over the previous two-step approach.

Comment thread README.md Outdated
Comment thread src/session.rs Outdated
Comment thread src/session.rs Outdated
Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

📜 Review details

Configuration used: CodeRabbit UI
Review profile: ASSERTIVE
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 7bc57f3 and df28eac.

📒 Files selected for processing (1)
  • README.md (2 hunks)
🧰 Additional context used
📓 Path-based instructions (1)
**/*.md

📄 CodeRabbit Inference Engine (AGENTS.md)

**/*.md: Documentation must use en-GB-oxendict spelling and grammar. (EXCEPTION: the naming of the LICENSE file, which is to be left unchanged for community consistency.)
Markdown paragraphs and bullet points must be wrapped at 80 columns.
Code blocks in Markdown files must be wrapped at 120 columns.
Tables and headings in Markdown files must not be wrapped.
Use dashes (-) for list bullets in Markdown files.
Use GitHub-flavoured Markdown footnotes ([^1]) for references and footnotes.

Files:

  • README.md

⚙️ CodeRabbit Configuration File

**/*.md: * Avoid 2nd person or 1st person pronouns ("I", "you", "we")

  • Use en-GB-oxendict (-ize / -our) spelling and grammar
  • Paragraphs and bullets must be wrapped to 80 columns, except where a long URL would prevent this (in which case, silence MD013 for that line)
  • Code blocks should be wrapped to 120 columns.
  • Headings must not be wrapped.
  • Documents must start with a level 1 heading
  • Headings must correctly increase or decrease by no more than one level at a time
  • Use GitHub-flavoured Markdown style for footnotes and endnotes.
  • Numbered footnotes must be numbered by order of appearance in the document.

Files:

  • README.md
🧠 Learnings (2)
📚 Learning: applies to docs/src/push.rs : sessionregistry must store weak references to pushhandleinner to avoid...
Learnt from: CR
PR: leynos/wireframe#0
File: docs/asynchronous-outbound-messaging-design.md:0-0
Timestamp: 2025-07-27T13:30:30.121Z
Learning: Applies to docs/src/push.rs : SessionRegistry must store Weak references to PushHandleInner to avoid memory leaks and provide methods to get, insert, remove, and enumerate active handles.

Applied to files:

  • README.md
📚 Learning: applies to docs/src/push.rs : sessionregistry must not leak memory when connections are terminated; ...
Learnt from: CR
PR: leynos/wireframe#0
File: docs/asynchronous-outbound-messaging-design.md:0-0
Timestamp: 2025-07-27T13:30:30.121Z
Learning: Applies to docs/src/push.rs : SessionRegistry must not leak memory when connections are terminated; entries whose handles have been dropped should be removed lazily.

Applied to files:

  • README.md
🔇 Additional comments (1)
README.md (1)

194-198: Session-registry wording update reads clearly and follows style guide.

The revised paragraph removes second-person pronouns, adds the required note about retain lock contention, and keeps line lengths within the documented limits. No further changes needed.

Comment thread README.md
@leynos leynos force-pushed the codex/refactor-sessionregistry-active_handles-implementation branch from df28eac to 1380c16 Compare August 4, 2025 17:37
@leynos
Copy link
Copy Markdown
Owner Author

leynos commented Aug 4, 2025

@coderabbitai review

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Aug 4, 2025

✅ Actions performed

Review triggered.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

@leynos leynos merged commit 80b6922 into main Aug 4, 2025
5 checks passed
@leynos leynos deleted the codex/refactor-sessionregistry-active_handles-implementation branch August 4, 2025 19:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant