1
0
Fork 0
mirror of synced 2024-06-13 16:24:47 +12:00

Address Christy's Comments

This commit is contained in:
Bradley Schofield 2024-01-22 16:50:45 +00:00
parent 09a7fc9063
commit f3579b3f12
3 changed files with 3 additions and 3 deletions

View file

@ -21,7 +21,7 @@ use Appwrite\Platform\Tasks\Upgrade;
use Appwrite\Platform\Tasks\DeleteOrphanedProjects;
use Appwrite\Platform\Tasks\GetMigrationStats;
use Appwrite\Platform\Tasks\PatchRecreateRepositoriesDocuments;
use Appwrite\Platform\Tasks\Retry;
use Appwrite\Platform\Tasks\RetryJobs;
class Tasks extends Service
{
@ -47,7 +47,7 @@ class Tasks extends Service
->addAction(DeleteOrphanedProjects::getName(), new DeleteOrphanedProjects())
->addAction(PatchRecreateRepositoriesDocuments::getName(), new PatchRecreateRepositoriesDocuments())
->addAction(GetMigrationStats::getName(), new GetMigrationStats())
->addAction(Retry::getName(), new Retry())
->addAction(RetryJobs::getName(), new RetryJobs())
;
}

View file

@ -8,7 +8,7 @@ use Utopia\Queue\Client;
use Utopia\Queue\Connection;
use Utopia\Validator\Text;
class Retry extends Action
class RetryJobs extends Action
{
public static function getName(): string
{