Merge pull request #254 from mercedes-benz/fix_conclusion_typo
fix: use the american english type of cancelled
This commit is contained in:
commit
02ff74bfe8
1 changed files with 6 additions and 6 deletions
|
|
@ -336,7 +336,7 @@ func (r *basePoolManager) startLoopForFunction(f func() error, interval time.Dur
|
|||
// this worker was stopped.
|
||||
return
|
||||
default:
|
||||
r.waitForTimeoutOrCanceled(common.BackoffTimer)
|
||||
r.waitForTimeoutOrCancelled(common.BackoffTimer)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -785,7 +785,7 @@ func (r *basePoolManager) Status() params.PoolManagerStatus {
|
|||
}
|
||||
}
|
||||
|
||||
func (r *basePoolManager) waitForTimeoutOrCanceled(timeout time.Duration) {
|
||||
func (r *basePoolManager) waitForTimeoutOrCancelled(timeout time.Duration) {
|
||||
slog.DebugContext(
|
||||
r.ctx, fmt.Sprintf("sleeping for %.2f minutes", timeout.Minutes()))
|
||||
select {
|
||||
|
|
@ -900,9 +900,9 @@ func (r *basePoolManager) getRunnerDetailsFromJob(job params.WorkflowJob) (param
|
|||
|
||||
var err error
|
||||
if job.WorkflowJob.RunnerName == "" {
|
||||
if job.WorkflowJob.Conclusion == "skipped" || job.WorkflowJob.Conclusion == "canceled" {
|
||||
// job was skipped or canceled before a runner was allocated. No point in continuing.
|
||||
return params.RunnerInfo{}, fmt.Errorf("job %d was skipped or canceled before a runner was allocated: %w", job.WorkflowJob.ID, runnerErrors.ErrNotFound)
|
||||
if job.WorkflowJob.Conclusion == "skipped" || job.WorkflowJob.Conclusion == "cancelled" {
|
||||
// job was skipped or cancelled before a runner was allocated. No point in continuing.
|
||||
return params.RunnerInfo{}, fmt.Errorf("job %d was skipped or cancelled before a runner was allocated: %w", job.WorkflowJob.ID, runnerErrors.ErrNotFound)
|
||||
}
|
||||
// Runner name was not set in WorkflowJob by github. We can still attempt to
|
||||
// fetch the info we need, using the workflow run ID, from the API.
|
||||
|
|
@ -964,7 +964,7 @@ func (r *basePoolManager) paramsWorkflowJobToParamsJob(job params.WorkflowJob) (
|
|||
|
||||
runnerName := job.WorkflowJob.RunnerName
|
||||
if job.Action != "queued" && runnerName == "" {
|
||||
if job.WorkflowJob.Conclusion != "skipped" && job.WorkflowJob.Conclusion != "canceled" {
|
||||
if job.WorkflowJob.Conclusion != "skipped" && job.WorkflowJob.Conclusion != "cancelled" {
|
||||
// Runner name was not set in WorkflowJob by github. We can still attempt to fetch the info we need,
|
||||
// using the workflow run ID, from the API.
|
||||
// We may still get no runner name. In situations such as jobs being cancelled before a runner had the chance
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue