satellitedb/overlaycache: avoid tx leak in case of error (#2095)
This commit is contained in:
parent
6809129e6f
commit
b8e0ac6377
@ -564,7 +564,7 @@ func (cache *overlaycache) CreateStats(ctx context.Context, nodeID storj.NodeID,
|
|||||||
// however we've seen from some crashes that it does. We need to track down the cause of these crashes
|
// however we've seen from some crashes that it does. We need to track down the cause of these crashes
|
||||||
// but for now we're adding a nil check to prevent a panic.
|
// but for now we're adding a nil check to prevent a panic.
|
||||||
if dbNode == nil {
|
if dbNode == nil {
|
||||||
return nil, Error.Wrap(errs.New("unable to get node by ID: %s", nodeID.String()))
|
return nil, Error.Wrap(errs.Combine(errs.New("unable to get node by ID: %v", nodeID), tx.Rollback()))
|
||||||
}
|
}
|
||||||
return getNodeStats(dbNode), Error.Wrap(tx.Commit())
|
return getNodeStats(dbNode), Error.Wrap(tx.Commit())
|
||||||
}
|
}
|
||||||
@ -627,7 +627,7 @@ func (cache *overlaycache) UpdateStats(ctx context.Context, updateReq *overlay.U
|
|||||||
// however we've seen from some crashes that it does. We need to track down the cause of these crashes
|
// however we've seen from some crashes that it does. We need to track down the cause of these crashes
|
||||||
// but for now we're adding a nil check to prevent a panic.
|
// but for now we're adding a nil check to prevent a panic.
|
||||||
if dbNode == nil {
|
if dbNode == nil {
|
||||||
return nil, Error.Wrap(errs.New("unable to get node by ID: %s", nodeID.String()))
|
return nil, Error.Wrap(errs.Combine(errs.New("unable to get node by ID: %v", nodeID), tx.Rollback()))
|
||||||
}
|
}
|
||||||
|
|
||||||
return getNodeStats(dbNode), Error.Wrap(tx.Commit())
|
return getNodeStats(dbNode), Error.Wrap(tx.Commit())
|
||||||
@ -719,7 +719,7 @@ func (cache *overlaycache) UpdateUptime(ctx context.Context, nodeID storj.NodeID
|
|||||||
// however we've seen from some crashes that it does. We need to track down the cause of these crashes
|
// however we've seen from some crashes that it does. We need to track down the cause of these crashes
|
||||||
// but for now we're adding a nil check to prevent a panic.
|
// but for now we're adding a nil check to prevent a panic.
|
||||||
if dbNode == nil {
|
if dbNode == nil {
|
||||||
return nil, Error.Wrap(errs.New("unable to get node by ID: %s", nodeID.String()))
|
return nil, Error.Wrap(errs.Combine(errs.New("unable to get node by ID: %v", nodeID), tx.Rollback()))
|
||||||
}
|
}
|
||||||
|
|
||||||
return getNodeStats(dbNode), Error.Wrap(tx.Commit())
|
return getNodeStats(dbNode), Error.Wrap(tx.Commit())
|
||||||
|
Loading…
Reference in New Issue
Block a user