We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2481a62 commit 27ae55cCopy full SHA for 27ae55c
tests/e2e/Adapter/PoolTest.php
@@ -14,6 +14,7 @@
14
use Utopia\Database\Exception\Duplicate;
15
use Utopia\Database\Exception\Limit;
16
use Utopia\Database\PDO;
17
+use Utopia\Pools\Adapter\Stack;
18
use Utopia\Pools\Pool as UtopiaPool;
19
20
class PoolTest extends Base
@@ -43,7 +44,7 @@ public function getDatabase(): Database
43
44
$redis->flushAll();
45
$cache = new Cache(new RedisAdapter($redis));
46
- $pool = new UtopiaPool('mysql', 10, function () {
47
+ $pool = new UtopiaPool(new Stack(), 'mysql', 10, function () {
48
$dbHost = 'mysql';
49
$dbPort = '3307';
50
$dbUser = 'root';
0 commit comments