Skip to content

Commit

Permalink
Simplify logic
Browse files Browse the repository at this point in the history
Signed-off-by: Gabriel Adrian Samfira <gsamfira@cloudbasesolutions.com>
  • Loading branch information
gabriel-samfira committed Jul 4, 2024
1 parent ffe2d81 commit 9e8de5b
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions database/sql/jobs.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,11 +142,10 @@ func (s *sqlDatabase) LockJob(_ context.Context, jobID int64, entityID string) e
}

asParams, err := sqlWorkflowJobToParamsJob(workflowJob)
if err == nil {
s.sendNotify(common.JobEntityType, common.UpdateOperation, asParams)
} else {
slog.With(slog.Any("error", err)).Error("failed to convert job to params")
if err != nil {
return errors.Wrap(err, "converting job")
}
s.sendNotify(common.JobEntityType, common.UpdateOperation, asParams)

return nil
}
Expand All @@ -172,11 +171,10 @@ func (s *sqlDatabase) BreakLockJobIsQueued(_ context.Context, jobID int64) (err
return errors.Wrap(err, "saving job")
}
asParams, err := sqlWorkflowJobToParamsJob(workflowJob)
if err == nil {
s.sendNotify(common.JobEntityType, common.UpdateOperation, asParams)
} else {
slog.With(slog.Any("error", err)).Error("failed to convert job to params")
if err != nil {
return errors.Wrap(err, "converting job")
}
s.sendNotify(common.JobEntityType, common.UpdateOperation, asParams)
return nil
}

Expand Down Expand Up @@ -206,11 +204,10 @@ func (s *sqlDatabase) UnlockJob(_ context.Context, jobID int64, entityID string)
}

asParams, err := sqlWorkflowJobToParamsJob(workflowJob)
if err == nil {
s.sendNotify(common.JobEntityType, common.UpdateOperation, asParams)
} else {
slog.With(slog.Any("error", err)).Error("failed to convert job to params")
if err != nil {
return errors.Wrap(err, "converting job")
}
s.sendNotify(common.JobEntityType, common.UpdateOperation, asParams)
return nil
}

Expand Down

0 comments on commit 9e8de5b

Please sign in to comment.