context
Jack Christensen 2017-02-09 21:42:58 -06:00
parent 50b0bea9e5
commit 09d37880ba
2 changed files with 17 additions and 1 deletions

11
conn-lock-todo.txt Normal file
View File

@ -0,0 +1,11 @@
Extract all locking state into a separate struct that will encapsulate locking and state change behavior.
This struct should add or subsume at least the following:
* alive
* closingLock
* ctxInProgress (though this may be restructured because it's possible a Tx may have a ctx and a query run in that Tx could have one)
* busy
* lock/unlock
* Tx in-progress
* Rows in-progress
* ConnPool checked-out or checked-in - maybe include reference to conn pool

View File

@ -1403,6 +1403,9 @@ func (c *Conn) termContext(opErr error) error {
select {
case err = <-c.closedChan:
if dlErr := c.conn.SetDeadline(time.Time{}); dlErr != nil {
c.Close() // Close connection if unable to disable deadline
}
if opErr == nil {
err = nil
}
@ -1418,7 +1421,9 @@ func (c *Conn) contextHandler(ctx context.Context) {
select {
case <-ctx.Done():
c.cancelQuery()
c.Close()
if err := c.conn.SetDeadline(time.Now()); err != nil {
c.Close() // Close connection if unable to set deadline
}
c.closedChan <- ctx.Err()
case <-c.doneChan:
}