From a437439c2023ac091ff55f4f22dc84f101ff98aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1vid=20Danyi?= Date: Thu, 30 Mar 2017 17:16:26 +0200 Subject: [PATCH] * cache update forced now --- src/App/Command/UpdateCacheCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App/Command/UpdateCacheCommand.php b/src/App/Command/UpdateCacheCommand.php index 511787c..4657994 100644 --- a/src/App/Command/UpdateCacheCommand.php +++ b/src/App/Command/UpdateCacheCommand.php @@ -29,7 +29,7 @@ class UpdateCacheCommand extends Command protected function execute(InputInterface $input, OutputInterface $output) { $this->ciExecutorService->getActiveNightlyConfiguration(true); - $this->ciExecutorService->getCiStreams(false); - $this->ciExecutorService->getJcatPackages(false); + $this->ciExecutorService->getCiStreams(true); + $this->ciExecutorService->getJcatPackages(true); } }