1
0
Fork 0
mirror of synced 2024-10-02 02:07:04 +13:00

fix mod condition

This commit is contained in:
shimon 2023-10-23 00:08:55 +03:00
parent bb46e3869c
commit 0d5127d90b

View file

@ -175,7 +175,8 @@ App::post('/v1/projects')
* Update database with self-managed db every $mod projects
*/
$mod = 20;
if ($index = array_search('database_db_fra1_self_hosted_0_0', $databases) && $project->getInternalId() % $mod === 0) {
$index = array_search('database_db_fra1_self_hosted_0_0', $databases);
if ($index !== false && ($project->getInternalId() % $mod === 0)) {
$project->setAttribute('database', $databases[$index]);
$dbForConsole->updateDocument('projects', $project);
}