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
When Swoole is enabled the user_id in the sessions table does not seem to change, i.e I login as user_id 2 which saves fine and then if I logout and log back in as user_id 32 it adds a row to the sessions table with user_id 2
Steps To Reproduce:
Install fresh Laravel application with Fortify Auth
Install Swoole
Run Swoole via artisan octane:start --port=8000 --server=swoole --max-requests=500 --workers=auto --no-interaction --watch
Set SESSION_DRIVER=database
Ensure cache is disabled CACHE_DRIVER=array
Login as a user
Check sessions table
Logout and login as a different user
Check new record in sessions table
The text was updated successfully, but these errors were encountered:
Description:
When Swoole is enabled the user_id in the sessions table does not seem to change, i.e I login as user_id 2 which saves fine and then if I logout and log back in as user_id 32 it adds a row to the sessions table with user_id 2
Steps To Reproduce:
artisan octane:start --port=8000 --server=swoole --max-requests=500 --workers=auto --no-interaction --watch
SESSION_DRIVER=database
CACHE_DRIVER=array
The text was updated successfully, but these errors were encountered: