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
{{ message }}
This repository has been archived by the owner on Apr 1, 2019. It is now read-only.
If you dispatch multiple actions when cognito.state is LOGGING_IN, performLogin is going to be called a number of times equal to the number of actions dispatched.
This happens because the enable function is subscribed to the store and it runs every time an action is dispatched. The, identityPoolLogin is going to be called multiple times and the validation state.cognito.state === CognitoState.LOGGING_IN can be true for a few milliseconds, thus performing login multiple times
The text was updated successfully, but these errors were encountered:
andrepcg
changed the title
Multiple performLogin called
BUG - performLogin called multiple times
Nov 23, 2017
I noticed this bug too but I hadn't tracked down the cause. After reviewing policy.js it looks like you're correct. An easy solution would be to use observerStore (described here reduxjs/redux#303 (comment)) to only call the listeners when state.cognito.state changes/transitions.
If you dispatch multiple actions when cognito.state is LOGGING_IN,
performLogin
is going to be called a number of times equal to the number of actions dispatched.This happens because the
enable
function is subscribed to the store and it runs every time an action is dispatched. The,identityPoolLogin
is going to be called multiple times and the validationstate.cognito.state === CognitoState.LOGGING_IN
can be true for a few milliseconds, thus performing login multiple timesThe text was updated successfully, but these errors were encountered: