mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
Marked cache as case insensitive
This commit is contained in:
@@ -135,6 +135,8 @@ const APP_AUTH_TYPE_ADMIN = 'Admin';
|
||||
// Response related
|
||||
const MAX_OUTPUT_CHUNK_SIZE = 2*1024*1024; // 2MB
|
||||
|
||||
Cache::setCaseSensitivity(false);
|
||||
|
||||
$register = new Registry();
|
||||
|
||||
App::setMode(App::getEnv('_APP_ENV', App::MODE_TYPE_PRODUCTION));
|
||||
|
||||
@@ -31,6 +31,8 @@ require_once __DIR__ . '/init.php';
|
||||
|
||||
Runtime::enableCoroutine(SWOOLE_HOOK_ALL);
|
||||
|
||||
Cache::setCaseSensitivity(false);
|
||||
|
||||
$realtime = new Realtime();
|
||||
|
||||
/**
|
||||
|
||||
@@ -12,6 +12,8 @@ use Utopia\Database\Database;
|
||||
use Utopia\Database\Validator\Authorization;
|
||||
use Utopia\Validator\Text;
|
||||
|
||||
Cache::setCaseSensitivity(false);
|
||||
|
||||
$cli
|
||||
->task('migrate')
|
||||
->param('version', APP_VERSION_STABLE, new Text(8), 'Version to migrate to.', true)
|
||||
|
||||
@@ -11,6 +11,8 @@ use Utopia\Database\Database;
|
||||
use Utopia\Database\Document;
|
||||
use Utopia\Database\Validator\Authorization;
|
||||
|
||||
Cache::setCaseSensitivity(false);
|
||||
|
||||
/**
|
||||
* Metrics We collect
|
||||
*
|
||||
|
||||
@@ -16,6 +16,8 @@ use Utopia\Storage\Device\S3;
|
||||
|
||||
use Exception;
|
||||
|
||||
Cache::setCaseSensitivity(false);
|
||||
|
||||
abstract class Worker
|
||||
{
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user