]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Fixed elCurator check for RabbitMQ / Redis 4213/head
authorNicolas Lœuillet <nicolas@loeuillet.org>
Mon, 2 Dec 2019 11:36:05 +0000 (12:36 +0100)
committerNicolas Lœuillet <nicolas@loeuillet.org>
Mon, 2 Dec 2019 11:36:05 +0000 (12:36 +0100)
src/Wallabag/ImportBundle/Controller/ImportController.php

index fbd7434e523d4de869f7e33f04a5a4f9aaa5b6a8..5a7e53d6140cbc4edd75e489d77c7d5a6a1bbca0 100644 (file)
@@ -43,6 +43,7 @@ class ImportController extends Controller
                     + $this->getTotalMessageInRabbitQueue('chrome')
                     + $this->getTotalMessageInRabbitQueue('instapaper')
                     + $this->getTotalMessageInRabbitQueue('pinboard')
+                    + $this->getTotalMessageInRabbitQueue('elcurator')
                 ;
             } catch (\Exception $e) {
                 $rabbitNotInstalled = true;
@@ -59,6 +60,7 @@ class ImportController extends Controller
                     + $redis->llen('wallabag.import.chrome')
                     + $redis->llen('wallabag.import.instapaper')
                     + $redis->llen('wallabag.import.pinboard')
+                    + $redis->llen('wallabag.import.elcurator')
                 ;
             } catch (\Exception $e) {
                 $redisNotInstalled = true;