mirror of
https://gitea.com/gitea/act_runner
synced 2024-11-09 18:05:52 +01:00
chore(gRPC): fetch new stage data.
Signed-off-by: Bo-Yi.Wu <appleboy.tw@gmail.com>
This commit is contained in:
parent
6030610c04
commit
631f801aa6
@ -31,7 +31,7 @@ func New(endpoint, secret string, skipverify bool, opts ...Option) *HTTPClient {
|
|||||||
}
|
}
|
||||||
|
|
||||||
client.Client = &http.Client{
|
client.Client = &http.Client{
|
||||||
Timeout: 5 * time.Second,
|
Timeout: 1 * time.Minute,
|
||||||
CheckRedirect: func(*http.Request, []*http.Request) error {
|
CheckRedirect: func(*http.Request, []*http.Request) error {
|
||||||
return http.ErrUseLastResponse
|
return http.ErrUseLastResponse
|
||||||
},
|
},
|
||||||
|
@ -53,7 +53,8 @@ func (p *Poller) Poll(ctx context.Context, n int) error {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
if err := p.poll(ctx, i+1); err != nil {
|
if err := p.poll(ctx, i+1); err != nil {
|
||||||
log.WithError(err).Error("poll error")
|
log.WithField("thread", i+1).
|
||||||
|
WithError(err).Error("poll error")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -65,10 +66,11 @@ func (p *Poller) Poll(ctx context.Context, n int) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (p *Poller) poll(ctx context.Context, thread int) error {
|
func (p *Poller) poll(ctx context.Context, thread int) error {
|
||||||
log.WithField("thread", thread).Info("poller: request stage from remote server")
|
logger := log.WithField("thread", thread)
|
||||||
|
logger.Info("poller: request stage from remote server")
|
||||||
|
|
||||||
// TODO: fetch the job from remote server
|
ctx, cancel := context.WithTimeout(ctx, 30*time.Second)
|
||||||
time.Sleep(time.Second)
|
defer cancel()
|
||||||
|
|
||||||
// request a new build stage for execution from the central
|
// request a new build stage for execution from the central
|
||||||
// build server.
|
// build server.
|
||||||
@ -79,11 +81,10 @@ func (p *Poller) poll(ctx context.Context, thread int) error {
|
|||||||
Type: p.Filter.Type,
|
Type: p.Filter.Type,
|
||||||
})
|
})
|
||||||
if err == context.Canceled || err == context.DeadlineExceeded {
|
if err == context.Canceled || err == context.DeadlineExceeded {
|
||||||
log.WithError(err).Trace("poller: no stage returned")
|
logger.WithError(err).Trace("poller: no stage returned")
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.WithError(err).Error("poller: cannot request stage")
|
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user