You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Having migrated from bref v1 to v2 I found an edge case where if using Laravel Passport the storage area is changed to the /tmp directory by laravel bridge before the passport keys have been loaded.
Yeah this is a breaking change we figured out from v1 to v2. Ideally this should keep working out of the box, I'm not sure yet how to make that happen since we automatically move the entire storage directory to /tmp 🤔
Having migrated from bref v1 to v2 I found an edge case where if using Laravel Passport the storage area is changed to the /tmp directory by laravel bridge before the passport keys have been loaded.
This was disucssed on slack with @mnapoli.
I have solved this for now by adding the following to the
AuthServiceProvider
in the boot function.Passport::loadKeysFrom('directory of keys);
The text was updated successfully, but these errors were encountered: