]> git.mxchange.org Git - friendica.git/blobdiff - src/Console/Config.php
New table "post-counts" to precalculate the counts
[friendica.git] / src / Console / Config.php
index 8df7c28f21f19d61ba4a91a3aa1ea407023105f2..efb795360cac7c9ba5c882c7ec3480c256b936aa 100644 (file)
@@ -115,10 +115,6 @@ HELP;
                        throw new CommandArgsException('Too many arguments');
                }
 
-               if (!$this->appMode->has(App\Mode::DBCONFIGAVAILABLE)) {
-                       $this->out('Database isn\'t ready or populated yet, showing file config only');
-               }
-
                if (count($this->args) == 3) {
                        $cat = $this->getArgument(0);
                        $key = $this->getArgument(1);
@@ -180,10 +176,6 @@ HELP;
                if (count($this->args) == 0) {
                        $this->config->reload();
 
-                       if ($this->config->get('system', 'config_adapter') == 'jit' && $this->appMode->has(App\Mode::DBCONFIGAVAILABLE)) {
-                               $this->out('Warning: The JIT (Just In Time) Config adapter doesn\'t support loading the entire configuration, showing file config only');
-                       }
-
                        $config = $this->config->getCache()->getAll();
                        foreach ($config as $cat => $section) {
                                if (is_array($section)) {