]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
remove transaction for Notice save; causes deadlocks
authorEvan Prodromou <evan@status.net>
Wed, 13 Jan 2010 07:41:33 +0000 (23:41 -0800)
committerEvan Prodromou <evan@status.net>
Wed, 13 Jan 2010 07:41:33 +0000 (23:41 -0800)
classes/Notice.php

index 6284b8ca518947c16c37560a9b61c982ac928614..3069564227859a2d39171bdec1af8b0197cb02b6 100644 (file)
@@ -299,8 +299,6 @@ class Notice extends Memcached_DataObject
 
             // XXX: some of these functions write to the DB
 
-            $notice->query('BEGIN');
-
             $id = $notice->insert();
 
             if (!$id) {
@@ -342,8 +340,6 @@ class Notice extends Memcached_DataObject
 
             $notice->saveUrls();
 
-            $notice->query('COMMIT');
-
             Event::handle('EndNoticeSave', array($notice));
         }