mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
Remove error returns.
This commit is contained in:
@@ -350,12 +350,12 @@ func (c *call) End(ctx context.Context, errIn error, t callTrigger) error {
|
|||||||
// TODO: this should be update, really
|
// TODO: this should be update, really
|
||||||
if err := c.ds.InsertCall(ctx, c.Call); err != nil {
|
if err := c.ds.InsertCall(ctx, c.Call); err != nil {
|
||||||
common.Logger(ctx).WithError(err).Error("error inserting call into datastore")
|
common.Logger(ctx).WithError(err).Error("error inserting call into datastore")
|
||||||
return err
|
// note: Not returning err here since the job could have already finished successfully.
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := c.ds.InsertLog(ctx, c.AppName, c.ID, c.stderr); err != nil {
|
if err := c.ds.InsertLog(ctx, c.AppName, c.ID, c.stderr); err != nil {
|
||||||
common.Logger(ctx).WithError(err).Error("error uploading log")
|
common.Logger(ctx).WithError(err).Error("error uploading log")
|
||||||
return err
|
// note: Not returning err here since the job could have already finished successfully.
|
||||||
}
|
}
|
||||||
|
|
||||||
// NOTE call this after InsertLog or the buffer will get reset
|
// NOTE call this after InsertLog or the buffer will get reset
|
||||||
|
|||||||
Reference in New Issue
Block a user