Before submitting
Area
apps/server
Steps to reproduce
- On macOS 26.5.2, connect the host to two active networks:
- USB Ethernet is the default route and permits ordinary HTTPS, but blocks outbound TCP/UDP port
7844.
- Wi-Fi permits outbound port
7844.
- Enable T3 Connect in the desktop app.
- Confirm the local environment is healthy:
curl -i http://127.0.0.1:3773/.well-known/t3/environment
response line should be a HTTP/1.1 200 OK
-
Confirm the route-specific behavior against a documented Cloudflare Tunnel edge address:
nc -b en6 -G 3 -vz 198.41.192.107 7844
# Operation timed out
nc -b en0 -G 3 -vz 198.41.192.107 7844
# succeeded
-
Observe that the managed cloudflared child remains alive with a TCP connection stuck in SYN_SENT on port 7844; no Registered tunnel connection event occurs.
-
Run the T3 Connect status path and attempt to open the linked environment from a remote client. (Android)
Expected behavior
T3 Code should distinguish “relay client process spawned” from “managed tunnel connected.” Until cloudflared reports a registered tunnel connection, status and user-facing errors should not report or imply that the connector is ready. When registration repeatedly fails, the diagnostic should preserve enough of cloudflared's warning output to direct the user toward blocked Cloudflare Tunnel egress.
Actual behavior
The server returns status: "running" immediately after spawning cloudflared, before observing a registered tunnel connection. The Android app later reports only:
Failed to connect. Reason: relay environment is unavailable
There is no user-facing indication that the connector has never registered or that Cloudflare Tunnel egress is blocked.
Relevant current-main behavior:
apps/server/src/cloud/ManagedEndpointRuntime.ts returns running based on child-process liveness and immediately after spawn.
- The same module already classifies
Registered tunnel connection and warning output, but the observed readiness is not reflected in runtime status.
Impact
Major degradation or frequent failure
Version or commit
Desktop Alpha 0.0.33
Environment
macOS 26.5.2 (concurrent Wi-Fi and USB Ethernet conn), T3 Code Android
Logs or stack traces
Screenshots, recordings, or supporting files
No response
Workaround
- Disable/unplug the filtered Ethernet interface or move Wi-Fi above it in network service order, then restart T3 Code.
- Alternatively, allow outbound TCP and UDP port
7844 on the default network.
Before submitting
Area
apps/server
Steps to reproduce
7844.7844.response line should be a HTTP/1.1 200 OK
Confirm the route-specific behavior against a documented Cloudflare Tunnel edge address:
Observe that the managed
cloudflaredchild remains alive with a TCP connection stuck inSYN_SENTon port7844; noRegistered tunnel connectionevent occurs.Run the T3 Connect status path and attempt to open the linked environment from a remote client. (Android)
Expected behavior
T3 Code should distinguish “relay client process spawned” from “managed tunnel connected.” Until cloudflared reports a registered tunnel connection, status and user-facing errors should not report or imply that the connector is ready. When registration repeatedly fails, the diagnostic should preserve enough of cloudflared's warning output to direct the user toward blocked Cloudflare Tunnel egress.
Actual behavior
The server returns
status: "running"immediately after spawningcloudflared, before observing a registered tunnel connection. The Android app later reports only:There is no user-facing indication that the connector has never registered or that Cloudflare Tunnel egress is blocked.
Relevant current-main behavior:
apps/server/src/cloud/ManagedEndpointRuntime.tsreturnsrunningbased on child-process liveness and immediately after spawn.Registered tunnel connectionand warning output, but the observed readiness is not reflected in runtime status.Impact
Major degradation or frequent failure
Version or commit
Desktop Alpha 0.0.33
Environment
macOS 26.5.2 (concurrent Wi-Fi and USB Ethernet conn), T3 Code Android
Logs or stack traces
Screenshots, recordings, or supporting files
No response
Workaround
7844on the default network.