Rikki Masters
Rikki Masters
I also have the issue with MariaDB. Took so long to find that the cause was VirtioFS! `ERROR: 29 File './mysql/' not found (Errcode: 13 "Permission denied")` ``` db: image:...
@bretterer I've made a custom adapter in Laravel for key caching. ``` public function getKeys($jku) { if (!$keys = Cache::get('oktaKeys')) { $keys = json_decode($this->request->setUrl($jku)->get()->getBody()->getContents()); Cache::put('oktaKeys', $keys, now()->addMinutes(60)); // cache keys...
Same issue since upgrading to React 18
I fixed it by disabling React strict mode. (Remove from index.js) Strict mode will intentionally render every component twice.