Improve Update() to pass context to Exec

pull/2/head
Vinícius Garcia 2020-10-26 15:32:22 -03:00
parent 733284997f
commit c1f645216c
1 changed files with 1 additions and 1 deletions

View File

@ -247,7 +247,7 @@ func (c Client) Update(
return err
}
_, err = c.db.DB().Exec(query, params...)
_, err = c.db.DB().ExecContext(ctx, query, params...)
if err != nil {
return err
}