...
Code Block | ||
---|---|---|
| ||
ts := serverutils.StartServerOnly(t, ...)
defer ts.Stopper().Stop(ctx)
addr := ts.RPCAddr() // prints warning, linking to this section |
...
Code Block | ||
---|---|---|
| ||
srv := serverutils.StartServerOnly(t, ...)
defer srv.Stopper().Stop(ctx)
ts := srv.ApplicationLayer()
addr := ts.RPCAddr() |
...