diff options
author | Steven Blimkie <Steven.Blimkie@amdocs.com> | 2018-09-25 13:51:50 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-09-25 13:51:50 +0000 |
commit | ec1670e00f0abec2c7a28a9c0a79ffecd06f24c4 (patch) | |
tree | 5ce587b7a9cad511c99e0cacadc4e5673ff6061b /src/app/contextHandler/ContextHandlerActions.js | |
parent | 71b5923e74bd75f8fbfd610d23f94fdc013513da (diff) | |
parent | 947af7d0e262bc2be903ff1ee766a252d9d3ddb3 (diff) |
Merge "Fixing the errors on OOM"
Diffstat (limited to 'src/app/contextHandler/ContextHandlerActions.js')
-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)); }; |