From 5136724a29fd982b9115dd864cb743d42c99c477 Mon Sep 17 00:00:00 2001 From: Prateek Banga Date: Tue, 12 Sep 2023 22:02:19 +0530 Subject: [PATCH 1/2] fix default,type index --- app/config/collections.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config/collections.php b/app/config/collections.php index fd101ac440..eebd6d31d5 100644 --- a/app/config/collections.php +++ b/app/config/collections.php @@ -1482,7 +1482,7 @@ $commonCollections = [ [ '$id' => ID::custom('_key_default_type'), 'type' => Database::INDEX_KEY, - 'attributes' => ['default, type'], + 'attributes' => ['default','type'], 'lengths' => [], 'orders' => [Database::ORDER_ASC], ], From 497586378f15c4ce20602aeeee9fb914ad1c44ad Mon Sep 17 00:00:00 2001 From: Prateek Banga Date: Tue, 12 Sep 2023 22:05:14 +0530 Subject: [PATCH 2/2] removes unnecessary config load --- app/init.php | 1 - 1 file changed, 1 deletion(-) diff --git a/app/init.php b/app/init.php index ea1442d2d7..6d746fbe0b 100644 --- a/app/init.php +++ b/app/init.php @@ -257,7 +257,6 @@ Config::load('storage-logos', __DIR__ . '/config/storage/logos.php'); Config::load('storage-mimes', __DIR__ . '/config/storage/mimes.php'); Config::load('storage-inputs', __DIR__ . '/config/storage/inputs.php'); Config::load('storage-outputs', __DIR__ . '/config/storage/outputs.php'); -Config::load('messagingProviders', __DIR__ . '/config/messagingProviders.php'); $user = App::getEnv('_APP_REDIS_USER', ''); $pass = App::getEnv('_APP_REDIS_PASS', '');