mirror of
https://gitea.com/gitea/act_runner.git
synced 2024-11-06 10:47:22 +01:00
chore: update grpc router path
This commit is contained in:
parent
86f66eaa45
commit
f05e08a767
@ -4,6 +4,7 @@ import (
|
||||
"crypto/tls"
|
||||
"net"
|
||||
"net/http"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"code.gitea.io/bots-proto-go/ping/v1/pingv1connect"
|
||||
@ -51,15 +52,17 @@ func New(endpoint string, opts ...Option) *HTTPClient {
|
||||
}
|
||||
}
|
||||
|
||||
baseURL := strings.TrimRight(endpoint, "/") + "/api/bots"
|
||||
|
||||
return &HTTPClient{
|
||||
PingServiceClient: pingv1connect.NewPingServiceClient(
|
||||
cfg.httpClient,
|
||||
endpoint,
|
||||
baseURL,
|
||||
cfg.opts...,
|
||||
),
|
||||
RunnerServiceClient: runnerv1connect.NewRunnerServiceClient(
|
||||
cfg.httpClient,
|
||||
endpoint,
|
||||
baseURL,
|
||||
cfg.opts...,
|
||||
),
|
||||
endpoint: endpoint,
|
||||
|
Loading…
Reference in New Issue
Block a user