Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add cache fallback into DB library #494

Merged
merged 22 commits into from
Feb 4, 2025
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Run Linter
PineappleIOnic committed Dec 17, 2024
commit c19a7f3237f1b91f5a239d47b4a5ecb6a19c3433
1 change: 0 additions & 1 deletion tests/e2e/Adapter/Base.php
Original file line number Diff line number Diff line change
@@ -5,7 +5,6 @@
use Exception;
use PHPUnit\Framework\TestCase;
use Throwable;
use Utopia\CLI\CLI;
use Utopia\CLI\Console;
use Utopia\Database\Adapter\SQL;
use Utopia\Database\Database;
2 changes: 1 addition & 1 deletion tests/e2e/Adapter/MirrorTest.php
Original file line number Diff line number Diff line change
@@ -46,7 +46,7 @@ protected static function getDatabase(bool $fresh = false): Mirror
$dbPass = 'password';

$pdo = new PDO("mysql:host={$dbHost};port={$dbPort};charset=utf8mb4", $dbUser, $dbPass, MariaDB::getPDOAttributes());

try {
$redis = new Redis();
$redis->connect('redis', 6379);