diff options
author | Robin Appelman <robin@icewind.nl> | 2024-06-14 14:14:15 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2024-08-23 15:14:15 +0200 |
commit | 2f9f9e83e87ff4a54fd5abb2299eaca3d4da232d (patch) | |
tree | 8384d08750ab28467e817a10b282761123d162e0 /core/register_command.php | |
parent | 0cab17bfe7825e49d3dd6608f20f46164c975e31 (diff) | |
download | nextcloud-server-2f9f9e83e87ff4a54fd5abb2299eaca3d4da232d.tar.gz nextcloud-server-2f9f9e83e87ff4a54fd5abb2299eaca3d4da232d.zip |
feat: add command to send raw commands to redis
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'core/register_command.php')
-rw-r--r-- | core/register_command.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/register_command.php b/core/register_command.php index f898d91df70..5857c227fea 100644 --- a/core/register_command.php +++ b/core/register_command.php @@ -147,6 +147,8 @@ if ($config->getSystemValueBool('installed', false)) { $application->add(Server::get(Command\TaskProcessing\ListCommand::class)); $application->add(Server::get(Command\TaskProcessing\Statistics::class)); + + $application->add(Server::get(Command\Memcache\RedisCommand::class)); } else { $application->add(Server::get(Command\Maintenance\Install::class)); } |