N°6099 DeadLockLog : improve documentation and use existing constants (#441)

This commit is contained in:
Pierre Goiffon
2023-04-12 10:21:34 +02:00
committed by GitHub
parent 34368fe795
commit 1114ed9562
2 changed files with 7 additions and 4 deletions

View File

@@ -56,7 +56,7 @@ class DeadLockInjection
if ($this->iRequestCount == $this->iFailAt) {
echo "Generating a FAKE DEADLOCK\n";
IssueLog::Trace("Generating a FAKE DEADLOCK", 'cmdbsource');
throw new MySQLException("FAKE DEADLOCK", [], new Exception("FAKE DEADLOCK", 1213));
throw new MySQLException("FAKE DEADLOCK", [], new Exception("FAKE DEADLOCK", CMDBSource::MYSQL_ERRNO_DEADLOCK));
}
}
}