I'm developing an app using Microsoft Bot Framework V4 using the NodeJS SDK. The bot uses a basic waterfall dialog to authenticate the users, and access microsoft graph api in the backend. I use a lot of local variables to store transient data and don't have a need to maintain any state. My question is
When multiple users use my bot, will the sessions interfere? (note that I'm not using any bot user/conversation storage.
Since there is only one instance of the bot running in Azure, do I need to do anything from my side to handle multiple users or will the bot framework handle it for me automatically?
I'm seeing some erratic behavior when multiple users are trying to access the bot but not sure what the issue could.