killer
killer
I encountered this error even though I wasn't using SSH. ```Bash ➜ ~ opencode --print-logs --log-level DEBUG INFO 2025-12-10T11:38:03 +222ms service=default version=1.0.141 args=["--print-logs","--log-level","DEBUG"] opencode [object Object] ➜ ~ ``` ###...
The error on my end occurred because I had a network proxy enabled. The error likely originates from this location: https://github.com/sst/opencode/blob/dev/packages/sdk/js/src/v2/gen/client/client.gen.ts#L196
You can bypass the local address first. ```Bash export NO_PROXY=localhost,127.0.0.1,::1 ```