1
0
Fork 0
mirror of synced 2024-09-28 15:31:43 +12:00

chore: cleaning

This commit is contained in:
Binyamin Yawitz 2024-09-05 13:11:39 -04:00
parent 3af2ea0d4c
commit 5d70884e6c
No known key found for this signature in database
14 changed files with 1390 additions and 4254 deletions

View file

@ -635,7 +635,7 @@
* Bump console to version 3.2.7 [#7148](https://github.com/appwrite/appwrite/pull/7148)
* Chore update database to 0.45.2 [#7138](https://github.com/appwrite/appwrite/pull/7138)
* Implement queue thresholds for the health API [#7123](https://github.com/appwrite/appwrite/pull/7123)
* Add $auth->skip to the usage worker [#7124](https://github.com/appwrite/appwrite/pull/7124)
* Add Authorization::skip to the usage worker [#7124](https://github.com/appwrite/appwrite/pull/7124)
## Bug fixes
* fix: use queueForDeletes in git installation delete endpoint [#7140](https://github.com/appwrite/appwrite/pull/7140)

View file

@ -235,4 +235,4 @@ Join our growing community around the world! Check out our official [Blog](https
## License
This repository is available under the [BSD 3-Clause License](./LICENSE).
This repository is available under the [BSD 3-Clause License](./LICENSE).

View file

@ -1,6 +1,6 @@
<?php
require_once __DIR__ . '/init2.php';
require_once __DIR__ . '/init.php';
require_once __DIR__ . '/controllers/general.php';
use Appwrite\Event\Certificate;

View file

@ -1,6 +1,6 @@
<?php
require_once __DIR__ . '/init2.php';
require_once __DIR__ . '/init.php';
require_once __DIR__ . '/controllers/general.php';
use Appwrite\Utopia\Queue\Connections;

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -42,7 +42,7 @@ use Utopia\WebSocket\Server;
global $global, $container;
require_once __DIR__ . '/init2.php';
require_once __DIR__ . '/init.php';
Runtime::enableCoroutine(SWOOLE_HOOK_ALL);

View file

@ -848,7 +848,7 @@ services:
- MYSQL_USER=${_APP_DB_USER}
- MYSQL_PASSWORD=${_APP_DB_PASS}
- MARIADB_AUTO_UPGRADE=1
command: 'mysqld --innodb-flush-method=fsync'
command: 'mysqld --innodb-flush-method=fsync --max_connections=5000'
redis:
image: redis:7.2.4-alpine

View file

@ -1,6 +1,6 @@
<?php
require_once __DIR__ . '/init2.php';
require_once __DIR__ . '/init.php';
use Appwrite\Event\UsageDump;
use Appwrite\Platform\Appwrite;

File diff suppressed because it is too large Load diff

View file

@ -960,7 +960,7 @@ services:
- MYSQL_USER=${_APP_DB_USER}
- MYSQL_PASSWORD=${_APP_DB_PASS}
- MARIADB_AUTO_UPGRADE=1
command: "mysqld --innodb-flush-method=fsync"
command: 'mysqld --innodb-flush-method=fsync --max_connections=5000'
redis:
image: redis:7.2.4-alpine

View file

@ -1,6 +1,6 @@
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="app/init2.php"
bootstrap="app/init.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"

View file

@ -324,7 +324,7 @@ services:
- MYSQL_USER=user
- MYSQL_PASSWORD=password
- MARIADB_AUTO_UPGRADE=1
command: 'mysqld --innodb-flush-method=fsync'
command: 'mysqld --innodb-flush-method=fsync --max_connections=5000'
maildev:
image: djfarrelly/maildev

View file

@ -11,7 +11,7 @@ use Utopia\Queue;
use Utopia\Queue\Client;
use Utopia\System\System;
require_once __DIR__ . '/../../../app/init2.php';
require_once __DIR__ . '/../../../app/init.php';
class EventTest extends TestCase
{