Disable commit behavior because it's not reliable
authorAaron Bentley <abentley@panoramicfeedback.com>
Tue, 17 Oct 2006 19:26:02 +0000 (15:26 -0400)
committerAaron Bentley <abentley@panoramicfeedback.com>
Tue, 17 Oct 2006 19:26:02 +0000 (15:26 -0400)
Bugs-Everywhere-Web/beweb/controllers.py

index 4417a63a17d6aa96a9d2bcac4c938eba990073ac..5f0046e0d3bc5c1e86c97f1dec7c595f9925e8bc 100644 (file)
@@ -112,9 +112,9 @@ class Bug(PrestHandler):
             assigned = None
         bug.assigned = assigned
         bug.save()
-        bug.rcs.precommit(bug.path)
-        bug.rcs.commit(bug.path, "Auto-commit")
-        bug.rcs.postcommit(bug.path)
+#        bug.rcs.precommit(bug.path)
+#        bug.rcs.commit(bug.path, "Auto-commit")
+#        bug.rcs.postcommit(bug.path)
         raise cherrypy.HTTPRedirect(bug_list_url(bug_data["project"]))
 
     def instantiate(self, project, bug):