From df4165ce529eed11715714d475cd94717e80a8be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=91=E6=9E=97?= Date: Fri, 25 Feb 2022 19:00:32 +0800 Subject: [PATCH] modify plugin name --- Connection.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/Connection.php b/Connection.php index 76b9d4b..94badf5 100644 --- a/Connection.php +++ b/Connection.php @@ -205,7 +205,6 @@ class Connection extends Component public function rollback() { $pdo = $this->masterInstance(); - Context::remove($this->cds); if ($pdo->inTransaction()) { $pdo->rollback(); } @@ -219,7 +218,6 @@ class Connection extends Component public function commit() { $pdo = $this->masterInstance(); - Context::remove($this->cds); if ($pdo->inTransaction()) { $pdo->commit(); }