Running grpcui doesn't work and the browser keeps trying connection... until you close the browser! If the browser is closed and another is opened then it starts working.
The default open handler is faulty for google-chrome since it blocks until the browser exits. As consequence browser.OpenURL() is a blocking call preventing grpcui process to do its job. A workaround might be to make the call asynchronously.
go install
Running grpcui doesn't work and the browser keeps trying connection... until you close the browser! If the browser is closed and another is opened then it starts working.
The default open handler is faulty for google-chrome since it blocks until the browser exits. As consequence
browser.OpenURL()
is a blocking call preventing grpcui process to do its job. A workaround might be to make the call asynchronously.