From 3dc5e83d6bae9228a851a977f67db37b94a99a05 Mon Sep 17 00:00:00 2001 From: "molecule-ai[bot]" <276602405+molecule-ai[bot]@users.noreply.github.com> Date: Tue, 21 Apr 2026 06:37:25 +0000 Subject: [PATCH] fix(docs): correct https://wss:// mixed protocol typo in remote-workspaces-faq.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Line 98 had 'curl -s https://wss://[your-org].moleculesai.app/health' — mixed protocol prefix. Changed to 'curl -s https://' (HTTPS health check endpoint). Spotted in PR #1276 review. --- docs/guides/remote-workspaces-faq.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/remote-workspaces-faq.md b/docs/guides/remote-workspaces-faq.md index c209d7be..738001ee 100644 --- a/docs/guides/remote-workspaces-faq.md +++ b/docs/guides/remote-workspaces-faq.md @@ -95,7 +95,7 @@ Same as a container workspace — up to 5 concurrent delegated tasks. Remote run **Q: Remote workspace shows offline in Canvas but the process is running on my machine.** 1. Check the agent log: `molecule logs --workspace my-agent` -2. Confirm the machine has outbound internet access: `curl -s https://wss://[your-org].moleculesai.app/health` +2. Confirm the machine has outbound internet access: `curl -s https://[your-org].moleculesai.app/health` 3. Check token validity: `molecule auth status` — re-authenticate if expired 4. Restart the agent: `molecule restart --workspace my-agent`