-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
WARNING [cache] Failed to save key "xxx" #29118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
Comments
Can you provide a reproducer please? Can you maybe debug that InvalidArgumentException? |
@nicolas-grekas /**
* Internal logging helper.
*
* @internal
*/
public static function log(LoggerInterface $logger = null, $message, $context = array())
{
dump($context); // debug
if ($logger) {
$logger->warning($message, $context);
} else {
$replace = array();
foreach ($context as $k => $v) {
if (is_scalar($v)) {
$replace['{'.$k.'}'] = $v;
} The env info:
|
Fixed in #29209 |
nicolas-grekas
added a commit
that referenced
this issue
Nov 14, 2018
This PR was merged into the 4.2-dev branch. Discussion ---------- [VarExporter] fix handling of __sleep() | Q | A | ------------- | --- | Branch? | 4.2 | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | #29118 | License | MIT | Doc PR | - Commits ------- 46e2ecd [VarExporter] fix handling of __sleep()
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Symfony version(s) affected: 4.2.0-beta1
PHP Version: 7.2
Description
How to reproduce
The text was updated successfully, but these errors were encountered: