Skip to refresh execution status when unchanged (#17023)

fixes #16640

Signed-off-by: stonezdj <stonezdj@gmail.com>
This commit is contained in:
stonezdj(Daojun Zhang) 2022-06-20 13:56:19 +08:00 committed by GitHub
parent 6c02854921
commit 88b8a7ac2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -205,10 +205,6 @@ func (e *executionDAO) RefreshStatus(ctx context.Context, id int64) (bool, strin
// 3. bool: whether a retry is needed
// 4. error: the error
func (e *executionDAO) refreshStatus(ctx context.Context, id int64) (bool, string, bool, error) {
execution, err := e.Get(ctx, id)
if err != nil {
return false, "", false, err
}
metrics, err := e.GetMetrics(ctx, id)
if err != nil {
return false, "", false, err
@ -229,6 +225,14 @@ func (e *executionDAO) refreshStatus(ctx context.Context, id int64) (bool, strin
status = job.SuccessStatus.String()
}
execution, err := e.Get(ctx, id)
if err != nil {
return false, "", false, err
}
if status == execution.Status {
return false, status, false, nil // status not changed
}
ormer, err := orm.FromContext(ctx)
if err != nil {
return false, "", false, err