diff options
author | Arul.Nambi <arul.nambi@amdocs.com> | 2018-09-21 10:09:37 -0400 |
---|---|---|
committer | Arul.Nambi <arul.nambi@amdocs.com> | 2018-09-21 10:09:52 -0400 |
commit | 947af7d0e262bc2be903ff1ee766a252d9d3ddb3 (patch) | |
tree | 45b1ac35834ab3c70a2af11bf96ff017d6e8d971 /src/app/contextHandler | |
parent | 21ab8d88d55d264eff83d628ba924e95cff52fc4 (diff) |
Fixing the errors on OOM
Issue-ID: AAI-1669
Change-Id: Ie47a0fd7ecff6f21f6ffb8f42a962c6652f87a93
Signed-off-by: Arul.Nambi <arul.nambi@amdocs.com>
Diffstat (limited to 'src/app/contextHandler')
-rw-r--r-- | src/app/contextHandler/ContextHandlerActions.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/app/contextHandler/ContextHandlerActions.js b/src/app/contextHandler/ContextHandlerActions.js index b4805e1..f3ede6d 100644 --- a/src/app/contextHandler/ContextHandlerActions.js +++ b/src/app/contextHandler/ContextHandlerActions.js @@ -105,7 +105,8 @@ function fetchSubscriptionPayload(fetchRequestCallback) { export function getSubscriptionPayload() { let externalfetchRequest = - () => networkCall.getRequest(SUBSCRIPTION_PAYLOAD_URL, GET); + () => networkCall.getRequest(SUBSCRIPTION_PAYLOAD_URL, GET); + return dispatch => { dispatch(fetchSubscriptionPayload(externalfetchRequest)); }; |