Added missing compression to summit json generator

task.

Change-Id: If9d6acfc851ebc3919c205adf41ad7f9103a6817
This commit is contained in:
Sebastian Marcet 2017-05-02 13:53:21 -03:00
parent b4b6dac055
commit d9974c6c9f

View File

@ -113,11 +113,11 @@ final class SummitJsonGenerator extends Command {
if($summit->isActive())
{
$this->cache_service->setSingleValue($key_current, json_encode($data), $cache_lifetime);
$this->cache_service->setSingleValue($key_current, gzdeflate(json_encode($data), 9), $cache_lifetime);
$this->cache_service->setSingleValue($key_current . ".generated", $current_time, $cache_lifetime);
}
$this->cache_service->setSingleValue($key_id, json_encode($data), $cache_lifetime);
$this->cache_service->setSingleValue($key_id, gzdeflate(json_encode($data), 9), $cache_lifetime);
$this->cache_service->setSingleValue($key_id.".generated", $current_time, $cache_lifetime);
$this->info(sprintf("regenerated cache for summit id %s", $summit->getIdentifier()));