Flush memory cache in worker to get latest config values

This commit is contained in:
Frederic Guillot 2016-07-01 11:34:14 -04:00
parent a089cd72de
commit 662506941f
No known key found for this signature in database
GPG Key ID: 92D77191BA7FBC99
2 changed files with 2 additions and 0 deletions

View File

@ -22,6 +22,7 @@ Bug fixes:
* Fixed broken CSV exports
* Fixed identical background color for LetterAvatar on 32bits platforms (Hash greater than PHP_MAX_INT)
* Fixed lexer issue with non word characters
* Flush memory cache in worker to get latest config values
Version 1.0.30
--------------

View File

@ -48,6 +48,7 @@ class JobHandler extends Base
$worker = new $className($this->container);
call_user_func_array(array($worker, 'execute'), $payload['params']);
$this->memoryCache->flush();
}
/**