How to set handleCli to true? #17597
Unanswered
NiklasBr
asked this question in
Q&A / Support
Replies: 2 comments 1 reply
-
The only way I found has been the below example in the public function boot(): void
{
parent::boot();
if (PHP_SAPI === "cli") {
Cache::getHandler()->setHandleCli(true);
}
} What other ways are there which does not rely on |
Beta Was this translation helpful? Give feedback.
0 replies
-
Could this issue be related? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
From the logs when saving/updating an object:
But we cannot find the configuration option to actually set
handleCli
totrue
, how is it intended to work?Beta Was this translation helpful? Give feedback.
All reactions