Skip to content

feat: Telemetry Enhancements: Centralized Host Client Identification#175

Closed
waroca wants to merge 2 commits into
wonderwhy-er:mainfrom
waroca:telemetry-enhancements
Closed

feat: Telemetry Enhancements: Centralized Host Client Identification#175
waroca wants to merge 2 commits into
wonderwhy-er:mainfrom
waroca:telemetry-enhancements

Conversation

@waroca

@waroca waroca commented Jul 8, 2025

Copy link
Copy Markdown
Contributor

Telemetry Enhancements: Centralized Host Client Identification

Description

This pull request centralizes the identification of the host client (e.g., Cursor, Claude, Docker) by integrating it directly into the getConfig tool. This ensures a single, consistent source for determining the client environment across the application. The primary goal is to improve the accuracy and consistency of client identification for telemetry purposes, providing better insights into the application's usage across different environments.

Changes Made

  • getConfig Integration: The hostClient is now determined and provided via the getConfig tool, streamlining its access across the application. This removes redundant logic for identifying the client within other modules.
  • Dockerfile Update: Added ENV MCP_CLIENT_DOCKER=true to the Dockerfile. This environment variable enables explicit detection of Docker environments, which is then utilized by the getConfig tool to correctly identify Docker as the host client.
  • Telemetry Refinement (src/utils/capture.ts): Updated the telemetry capture logic to leverage the hostClient value obtained from configManager.getValue('hostClient'). This ensures that all telemetry events accurately reflect the host client, improving the granularity and reliability of collected data.

How to Test

To test these changes, please follow these steps:

  1. Build the project: npm install && npm run build
  2. Run the application: Start the application in different environments (e.g., locally, within a Docker container, or if possible, simulate Cursor/Claude environments).
  3. Verify Telemetry: Observe the telemetry output (e.g., in console logs or a local telemetry collection service, if configured) to ensure that the host_client property is correctly populated with the expected value (e.g., docker, cursor, claude, or unknown).

Checklist

  • Code follows project's style guidelines.
  • All existing tests pass.
  • Changes are backward compatible.

Summary by CodeRabbit

  • New Features
    • Added detection and reporting of the environment in which the application is running (e.g., Docker, Cursor, Claude) via a new system information property.
  • Improvements
    • Enhanced shell selection logic for process execution, providing more robust and platform-aware defaults.
    • Default shell for non-Windows systems changed from 'bash' to '/bin/sh'.
  • Chores
    • Added a "clean" script to remove the build output directory.
    • Updated test scripts and output files to reflect new runtime versions and improved environment detection.
  • Bug Fixes
    • Corrected formatting in test output logs.

waroca added 2 commits July 7, 2025 15:32
This commit addresses a critical bug found while using Desktop Commander in
Docker environments, specifically related to command execution. It also
enhances the overall stability of the test suite.

Key changes include:
- **Dynamic Shell Determination**: Implemented a hybrid approach for `start_process`
  to intelligently select the appropriate shell. This prioritizes:
    1.  Shell explicitly provided in the tool call.
    2.  `defaultShell` configured in `config.json`.
    3.  Environment variables (`SHELL` or `COMSPEC`).
    4.  A safe hardcoded fallback (`/bin/sh` for Unix-like, `cmd.exe` for Windows).
  This resolves the "spawn bash ENOENT" error in minimal Docker containers,
  which was causing server crashes.
- **Test Suite Enhancements**:
    - Updated `test-enhanced-repl.js` to dynamically detect `python` or `python3`
      commands, making the test more robust across different environments.
    - Disabled the obsolete `test-repl-tools.js` by renaming it to prevent
      failures due to missing `repl-manager.js`.
    - Corrected hardcoded absolute paths in `test_improved_search_truncation.js`
      and `test_search_truncation.js` to relative paths, eliminating `ripgrep`
      errors and improving test portability.
This commit centralizes the identification of the host client (e.g., Cursor, Claude, Docker) by integrating it directly into the `getConfig` tool. This ensures a single, consistent source for determining the client environment.

Key changes include:
- **`getConfig` Integration**: The `hostClient` is now determined and provided via the `getConfig` tool, streamlining its access across the application.
- **Dockerfile Update**: Added `ENV MCP_CLIENT_DOCKER=true` to the Dockerfile to enable explicit detection of Docker environments, which is then used by the `getConfig` tool.
- **Telemetry Refinement**: Updated `src/utils/capture.ts` to leverage the `hostClient` value obtained from `configManager.getValue('hostClient')`, removing the previous, redundant logic for identifying the client within the telemetry module itself. This ensures that all telemetry events accurately reflect the host client.
- **Code Cleanup**: Removed an unused `process` import from `src/utils/capture.ts`.

These changes improve the accuracy and consistency of client identification for telemetry purposes, providing better insights into the application's usage across different environments.
@coderabbitai

coderabbitai Bot commented Jul 8, 2025

Copy link
Copy Markdown
Contributor

Walkthrough

This update introduces a new MCP_CLIENT_DOCKER environment variable in the Dockerfile and enhances configuration and telemetry logic to detect and report the client host type based on environment variables. It also refines shell selection logic, updates test scripts and outputs for new interpreter versions, and adds a "clean" script to package.json.

Changes

Files / Areas Changed Summary
Dockerfile Added MCP_CLIENT_DOCKER=true environment variable.
package.json Added a "clean" npm script to remove the dist directory.
src/config-manager.ts Changed default shell for non-Windows from 'bash' to '/bin/sh'.
src/tools/config.ts Added hostClient property to config, determined by specific environment variables.
src/tools/improved-process-tools.ts Refined shell selection logic for process execution; now checks config, env vars, and platform before defaulting.
src/utils/capture.ts Introduced BaseProperties interface and added host_client field to telemetry properties.
test/test-enhanced-repl.js Added Python interpreter detection logic and updated shell to /bin/bash.
test/test_improved_search_truncation.js,
test/test_search_truncation.js
Changed test search path from absolute to current directory (.).
test/test_output/node_repl_debug.txt,
test/test_output/repl_test_output.txt
Updated output logs for new Node.js and Python versions and corrected greeting formatting.

Sequence Diagram(s)

sequenceDiagram
    participant User
    participant DockerContainer
    participant App
    participant ConfigManager
    participant Telemetry

    User->>DockerContainer: Starts container (with MCP_CLIENT_DOCKER=true)
    DockerContainer->>App: Launches application
    App->>ConfigManager: getConfig()
    ConfigManager->>App: Returns config with hostClient ('docker')
    App->>Telemetry: captureBase() with host_client='docker'
Loading
sequenceDiagram
    participant User
    participant App
    participant ConfigManager

    User->>App: startProcess(command)
    App->>ConfigManager: getConfig()
    ConfigManager->>App: Returns config with defaultShell
    App->>App: Selects shell based on config/env/platform
    App->>App: Executes command with resolved shell
Loading

Possibly related PRs

Suggested reviewers

  • serg33v

Poem

In the warren of code where the shells softly dwell,
A Docker flag whispers, “I’m here as well!”
Configs now smarter, tests freshly cleaned,
Host clients detected, telemetry gleaned.
With every new version, we hop and we cheer—
🐇 This rabbit’s delighted, the changes are clear!

✨ Finishing Touches
  • 📝 Generate Docstrings

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 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.
    • @coderabbitai modularize this function.
  • 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.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

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

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

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 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.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Actionable comments posted: 2

🧹 Nitpick comments (2)
src/tools/config.ts (1)

17-17: Fix type annotation for hostClientIdentifier.

The variable is declared as string | undefined but is always assigned a string value, making the undefined type unnecessary.

-    let hostClientIdentifier: string | undefined = 'unknown';
+    let hostClientIdentifier: string = 'unknown';
src/tools/improved-process-tools.ts (1)

45-61: Enhanced shell determination logic looks good, but consider error handling.

The centralized shell determination logic is a significant improvement that properly handles configuration hierarchy and platform differences. However, consider adding error handling for the async configManager.getConfig() call.

Consider wrapping the config retrieval in a try-catch block:

  if (!shellUsed) {
-    const config = await configManager.getConfig();
-    if (config.defaultShell) {
-      shellUsed = config.defaultShell;
-    } else {
+    try {
+      const config = await configManager.getConfig();
+      if (config.defaultShell) {
+        shellUsed = config.defaultShell;
+      } else {
+        const isWindows = os.platform() === 'win32';
+        if (isWindows && process.env.COMSPEC) {
+          shellUsed = process.env.COMSPEC;
+        } else if (!isWindows && process.env.SHELL) {
+          shellUsed = process.env.SHELL;
+        } else {
+          shellUsed = isWindows ? 'cmd.exe' : '/bin/sh';
+        }
+      }
+    } catch (error) {
       const isWindows = os.platform() === 'win32';
       if (isWindows && process.env.COMSPEC) {
         shellUsed = process.env.COMSPEC;
       } else if (!isWindows && process.env.SHELL) {
         shellUsed = process.env.SHELL;
       } else {
         shellUsed = isWindows ? 'cmd.exe' : '/bin/sh';
       }
     }
   }
📜 Review details

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

📥 Commits

Reviewing files that changed from the base of the PR and between 886c537 and cd2d234.

📒 Files selected for processing (11)
  • Dockerfile (1 hunks)
  • package.json (1 hunks)
  • src/config-manager.ts (1 hunks)
  • src/tools/config.ts (2 hunks)
  • src/tools/improved-process-tools.ts (2 hunks)
  • src/utils/capture.ts (2 hunks)
  • test/test-enhanced-repl.js (1 hunks)
  • test/test_improved_search_truncation.js (1 hunks)
  • test/test_output/node_repl_debug.txt (2 hunks)
  • test/test_output/repl_test_output.txt (1 hunks)
  • test/test_search_truncation.js (1 hunks)
🧰 Additional context used
🧬 Code Graph Analysis (2)
src/utils/capture.ts (2)
src/version.ts (1)
  • VERSION (1-1)
src/config-manager.ts (1)
  • configManager (212-212)
src/tools/improved-process-tools.ts (2)
src/config-manager.ts (1)
  • configManager (212-212)
src/terminal-manager.ts (1)
  • terminalManager (255-255)
🪛 LanguageTool
test/test_output/node_repl_debug.txt

[grammar] ~3-~3: Use proper spacing conventions.
Context: ...32m[STDOUT] Welcome to Node.js v22.15.0. Type ".help" for more information.�[0m �...

(QB_NEW_EN_OTHER_ERROR_IDS_000007)


[grammar] ~6-~6: Use proper spacing conventions.
Context: ...put buffer: Welcome to Node.js v22.15.0. Type ".help" for more information. > �[0...

(QB_NEW_EN_OTHER_ERROR_IDS_000007)


[grammar] ~7-~7: Use proper spacing conventions.
Context: ...15.0. Type ".help" for more information. > �[0m �[34mSending simple command...�[0m ...

(QB_NEW_EN_OTHER_ERROR_IDS_000007)


[grammar] ~13-~13: Use proper spacing conventions.
Context: ...st command: Welcome to Node.js v22.15.0. Type ".help" for more information. > Hel...

(QB_NEW_EN_OTHER_ERROR_IDS_000007)


[grammar] ~43-~43: Use proper spacing conventions.
Context: ...put buffer: Welcome to Node.js v22.15.0. Type ".help" for more information. > Hel...

(QB_NEW_EN_OTHER_ERROR_IDS_000007)

test/test_output/repl_test_output.txt

[grammar] ~2-~2: Use proper spacing conventions.
Context: ...on REPL output: Python 3.13.3 (main, Apr 8 2025, 13:54:08) [Clang 16.0.0 (clang-...

(QB_NEW_EN_OTHER_ERROR_IDS_000007)


[grammar] ~3-~3: There might be a problem here.
Context: ...0.0 (clang-1600.0.26.6)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>>...

(QB_NEW_EN_MERGED_MATCH)


[grammar] ~3-~3: Use proper spacing conventions.
Context: ...dits" or "license" for more information. >>> STARTING PYTHON TEST >>> REPL_TEST_VALUE...

(QB_NEW_EN_OTHER_ERROR_IDS_000007)


[grammar] ~5-~5: Use proper spacing conventions.
Context: ...TING PYTHON TEST >>> REPL_TEST_VALUE: 44 >>> Node.js REPL output: Welcome to Node.js ...

(QB_NEW_EN_OTHER_ERROR_IDS_000007)


[grammar] ~9-~9: Use proper spacing conventions.
Context: ...EPL output: Welcome to Node.js v22.15.0. Type ".help" for more information. > STA...

(QB_NEW_EN_OTHER_ERROR_IDS_000007)


[grammar] ~10-~10: Use proper spacing conventions.
Context: ...15.0. Type ".help" for more information. > STARTING NODE TEST undefined > NODE_REPL...

(QB_NEW_EN_OTHER_ERROR_IDS_000007)

🔇 Additional comments (15)
Dockerfile (1)

4-5: LGTM! Environment variable correctly positioned for Docker detection.

The addition of MCP_CLIENT_DOCKER=true environment variable is well-placed and supports the PR's objective of centralizing host client identification for telemetry purposes.

package.json (1)

35-35: LGTM! Useful utility script addition.

The clean script provides a convenient way to remove build artifacts using the cross-platform shx utility.

test/test_improved_search_truncation.js (1)

10-10: LGTM! Test path made more portable.

Changing from an absolute path to the current directory (.) makes the test more portable and removes the hardcoded user-specific path.

test/test_search_truncation.js (1)

10-10: LGTM! Consistent test path improvement.

Good to see consistent application of relative paths across test files, improving portability and removing hardcoded absolute paths.

test/test_output/node_repl_debug.txt (2)

3-3: Test output reflects Node.js version downgrade from v23.8.0 to v22.15.0.

The version change is consistent across all output references and aligns with the test environment updates.

Also applies to: 6-6, 13-13, 43-43


38-39: Improved output formatting for multi-line greetings.

The greeting outputs are now properly separated into individual lines, improving readability.

test/test_output/repl_test_output.txt (2)

2-2: Test output reflects Python version upgrade from 3.11.0 to 3.13.3.

The version change and corresponding test value adjustment (52 → 44) are consistent with the runtime environment update.

Also applies to: 5-5


9-9: Test output reflects Node.js version downgrade from v23.8.0 to v22.15.0.

The version change and corresponding test value adjustment (81 → 54) are consistent with the runtime environment update.

Also applies to: 13-13

src/tools/config.ts (2)

18-24: Well-implemented host client detection logic.

The environment variable checking follows a logical precedence order (Cursor → Claude → Docker → unknown) and aligns with the PR objectives for centralized host client identification.


36-36: Properly integrated hostClient into system info.

The hostClient identifier is correctly added to the system information object, making it available for telemetry and other consumers.

test/test-enhanced-repl.js (2)

9-23: Well-implemented Python command detection.

The function correctly prioritizes python3 over python and provides clear error messaging when neither is available. The use of execSync with stdio: 'ignore' is appropriate for this detection logic.


32-34: Good integration of dynamic Python command detection.

The detected Python command is properly used in the startProcess call, and the explicit shell specification (/bin/bash) ensures consistent behavior across environments.

Also applies to: 38-41

src/utils/capture.ts (1)

128-135: Good addition of type safety with BaseProperties interface.

The interface properly defines the structure of base properties used in telemetry capture, improving code maintainability and type safety.

src/tools/improved-process-tools.ts (2)

8-9: LGTM: Import additions support enhanced shell determination.

The added imports for os and configManager are necessary and correctly implemented to support the new shell determination logic.


66-66: LGTM: Proper usage of resolved shell variable.

The usage of the resolved shellUsed variable correctly implements the enhanced shell determination logic.

Comment thread src/config-manager.ts
"takeown" // Take ownership of files
],
defaultShell: os.platform() === 'win32' ? 'powershell.exe' : 'bash',
defaultShell: os.platform() === 'win32' ? 'powershell.exe' : '/bin/sh',

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

💡 Verification agent

🧩 Analysis chain

Verify impact of shell change on existing users.

Changing the default shell from bash to /bin/sh for non-Windows platforms could be a breaking change for users who rely on bash-specific features. While /bin/sh is more universally available, it has fewer features than bash.

Please verify:

  1. That existing user workflows won't break with this change
  2. Consider documenting this change in release notes
  3. Ensure the shell selection logic in other parts of the codebase (mentioned in AI summary) properly handles this change

🏁 Script executed:

#!/bin/bash
# Search for any bash-specific usage that might be affected
echo "Searching for potential bash-specific features in the codebase..."
rg -i "bash|#!/bin/bash" --type js --type ts -A 3 -B 1

Length of output: 7093


Document the change to /bin/sh as the new default shell

We’ve confirmed that the default in config-manager.ts is now /bin/sh on Unix, and test/test-default-shell.js has been updated to expect /bin/sh as the first‐choice shell. A ripgrep search for “bash”/“#!/bin/bash” across JS/TS files shows no remaining runtime dependencies on Bash-only features.

Please add the following before merging:

• Changelog/release notes entry: “Default shell on macOS/Linux changed from bash to /bin/sh.”
• Update user documentation:
– README (or any user-facing docs) section describing default shell.
– Code comments in src/server.ts that list “start_process('bash')”.
– Any mention in src/utils/system-info.ts of defaultShell = 'bash'.

🤖 Prompt for AI Agents
In src/config-manager.ts at line 125, the default shell was changed to '/bin/sh'
for Unix systems. To complete this update, add a changelog or release notes
entry stating "Default shell on macOS/Linux changed from `bash` to `/bin/sh`."
Update all user-facing documentation such as the README to reflect this new
default shell. Also, revise code comments in src/server.ts that mention
"start_process('bash')" and update any references to defaultShell = 'bash' in
src/utils/system-info.ts to align with the new default shell setting.

Comment thread src/utils/capture.ts
Comment on lines +143 to +146
const hostClient = await configManager.getValue('hostClient');
if (hostClient) {
(baseProperties as any).host_client = hostClient;
}

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

🛠️ Refactor suggestion

Improve host_client assignment to avoid type casting.

The current implementation uses type casting to assign the host_client property, which bypasses TypeScript's type checking.

Consider this cleaner approach:

-        const hostClient = await configManager.getValue('hostClient');
-        if (hostClient) {
-            (baseProperties as any).host_client = hostClient;
-        }
+        const hostClient = await configManager.getValue('hostClient');
+        if (hostClient) {
+            baseProperties.host_client = hostClient;
+        }

Alternatively, if you want to always include the property, modify the interface and initialization:

         interface BaseProperties {
             timestamp: string;
             platform: NodeJS.Platform;
             app_version: string;
             engagement_time_msec: string;
-            host_client?: string;
+            host_client: string;
         }

         const baseProperties: BaseProperties = {
             timestamp: new Date().toISOString(),
             platform: platform(),
             app_version: VERSION,
-            engagement_time_msec: "100"
+            engagement_time_msec: "100",
+            host_client: await configManager.getValue('hostClient') || 'unknown'
         };

Committable suggestion skipped: line range outside the PR's diff.

🤖 Prompt for AI Agents
In src/utils/capture.ts around lines 143 to 146, avoid using type casting to
assign the host_client property on baseProperties as it bypasses TypeScript's
type checking. Instead, update the type definition of baseProperties to include
host_client or initialize baseProperties with host_client as an optional
property. Then assign hostClient directly without casting, ensuring type safety
and cleaner code.

Comment thread src/tools/config.ts
let hostClientIdentifier: string | undefined = 'unknown';
if (process.env.CURSOR_TRACE_ID) {
hostClientIdentifier = 'cursor';
} else if (process.env.CLAUDE_MCP_TOKEN) {

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

can you explain how its working? i tried it on macos, and CLAUDE_MCP_TOKEN is empty and i have unknown client most of the time. Where did you found this variable?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

I am also using macos and I didn't do anything special. I found they were adding that Env variable to my tool call. What version of Claude Desktop are you using? How do you have DC installed? Maybe that influences things?

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

i did npm run setup on this repository, also built conteiner from this repo.
in docker i saw "docker" as a client.
Claude desktop: Claude 0.11.6 (0aa9ce) 2025-06-29T21:59:05.000Z

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

I think it will make more sense to put docker as a separate flag: is_docker or something like this, this is more about env, than client

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

@waroca what do you think if we remove this identification, and keep only is it from docker or not?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

yeah that that makes sense so to not confuse the underlying client vs the environment its running in. Since we also now have a better way to detect clients, how about we don't merge this at all and I create a separate one with the Dockerfile update and the new flag?

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

sounds good

@wonderwhy-er

Copy link
Copy Markdown
Owner

As we merged other way to detect closing this one

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants