summaryrefslogtreecommitdiffstats
path: root/models/issue_comment.go
diff options
context:
space:
mode:
authorLauris BH <lauris@nix.lv>2017-06-21 03:57:05 +0300
committerLunny Xiao <xiaolunwen@gmail.com>2017-06-21 08:57:05 +0800
commit6db387a21e245dc4aa7f009ca60574e42d934ffb (patch)
tree5f5dcd1b4cd3409e3fc1c4e2a0799ce85a09c3c0 /models/issue_comment.go
parent754482bf5d4922f0553c281ac525daff3f446c22 (diff)
downloadgitea-6db387a21e245dc4aa7f009ca60574e42d934ffb.tar.gz
gitea-6db387a21e245dc4aa7f009ca60574e42d934ffb.zip
Refactor session close as xorm already does everything needed internally (#2020)
Diffstat (limited to 'models/issue_comment.go')
-rw-r--r--models/issue_comment.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/models/issue_comment.go b/models/issue_comment.go
index ead3f1bed3..2da70decff 100644
--- a/models/issue_comment.go
+++ b/models/issue_comment.go
@@ -502,7 +502,7 @@ type CreateCommentOptions struct {
// CreateComment creates comment of issue or commit.
func CreateComment(opts *CreateCommentOptions) (comment *Comment, err error) {
sess := x.NewSession()
- defer sessionRelease(sess)
+ defer sess.Close()
if err = sess.Begin(); err != nil {
return nil, err
}
@@ -620,7 +620,7 @@ func UpdateComment(c *Comment) error {
// DeleteComment deletes the comment
func DeleteComment(comment *Comment) error {
sess := x.NewSession()
- defer sessionRelease(sess)
+ defer sess.Close()
if err := sess.Begin(); err != nil {
return err
}