We are using signInWithCredentials in a nodejs application for authentication only, we just want to verify that the use id and password are valid before proceeding to the next step. Everything is working as expected in the application the only issue is we are seeing the Error/warning below in our logs on the server:
[ERR] {okta-auth-sdk] WARN: Memory storage can only support simple single user use case on server side, please provide custom storageProvider or storageKey if advanced scenarios need to be supported.
I know signInWithCredentials is a client side api call and is meant to store session data in the browser, we are not using or dependent on any of the session data. What does this waning mean? Will this eventually cause issue on the server over a period of time? As I mentioned earlier everything currently seems to be working fine.