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
BAM (by default) doesn't include the sessions table in backed up database. When you restore from the UI, the old session table is somehow preserved intact, but restoring from bee wipes out its content. I'm not sure how and why this is happening. It may very well be that sessions building is being prevented when running bee.
The text was updated successfully, but these errors were encountered:
Isn't this simply because by default BAM does not drop all tables before doing a restore. So while BAM backup did not preserve a sessions table, the site continued using the existing session table. Since restore also does not drop all tables before a restore (unless configured to do so) the session table remains as do any others through out the site, such as caches etc. So, I'd say this is normal behaviour. Maybe bee is doing override with drop tables before bam restore?
This is a follow up to #115
BAM (by default) doesn't include the
sessions
table in backed up database. When you restore from the UI, the old session table is somehow preserved intact, but restoring from bee wipes out its content. I'm not sure how and why this is happening. It may very well be thatsessions
building is being prevented when running bee.The text was updated successfully, but these errors were encountered: