We are deploying a remix app using remix-auth and SessionStorage from remix-run/node.
Unfortunately, it seems that the session storage is being cleared after each deploy. As we deploy a few times per day, this has caused users to be logged out while using the app.
I just wanted to get some advice on where to look on this, the render docs doesn’t seem to state we shouldn’t be able to have persistent sessions.
Based off this description, it is most likely that you’re saving session data to disk. If not directly to disk, then perhaps in an SQLite database, which is still just a flat file on disk.
That said, if you’re using SQLite, you would have bigger problems than just sessions.