fix: correct log message when releasing browser with reuse=false#112
Merged
tnsardesai merged 1 commit intomainfrom Feb 13, 2026
Merged
fix: correct log message when releasing browser with reuse=false#112tnsardesai merged 1 commit intomainfrom
tnsardesai merged 1 commit intomainfrom
Conversation
When a browser is released with reuse=false it gets deleted, but the CLI still logged "Released browser back to pool". Now logs "Deleted browser from pool" when reuse is explicitly set to false. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Sayan-
approved these changes
Feb 13, 2026
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
reuse=false, the CLI now logs "Deleted browser X from pool Y" instead of the misleading "Released browser X back to pool Y"reuseis not set or istrueTest plan
kernel browser-pools release <pool> --session-id <id> --reuse=falseand verify it says "Deleted browser ... from pool ..."kernel browser-pools release <pool> --session-id <id>(no reuse flag) and verify it says "Released browser ... back to pool ..."🤖 Generated with Claude Code
Note
Low Risk
Only changes CLI logging text based on an existing flag; no behavior, API calls, or data handling are modified.
Overview
Adjusts the
browser-pools releaseCLI success output to reflect actual behavior when--reuse=false.When
reuseis explicitly set tofalse, the command now prints "Deleted browser … from pool …"; otherwise it keeps the existing "Released browser … back to pool …" message.Written by Cursor Bugbot for commit 43ab9a8. This will update automatically on new commits. Configure here.