diff options
author | Phil Hughes <me@iamphill.com> | 2018-05-25 15:09:20 +0100 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2018-05-25 15:09:20 +0100 |
commit | cdc92d94e0c676bf86877a5794d72bd4dcf88c24 (patch) | |
tree | 35fa2548ab3b348d9a6630ffe53977429fb41dfc /app | |
parent | a83dd6642104faf4c8764283f5b7252a8ecd9590 (diff) | |
download | gitlab-ce-cdc92d94e0c676bf86877a5794d72bd4dcf88c24.tar.gz |
fixed pipeline actions spec
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/javascripts/ide/stores/modules/pipelines/actions.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/assets/javascripts/ide/stores/modules/pipelines/actions.js b/app/assets/javascripts/ide/stores/modules/pipelines/actions.js index 35b7be4d866..3c46e9d7a38 100644 --- a/app/assets/javascripts/ide/stores/modules/pipelines/actions.js +++ b/app/assets/javascripts/ide/stores/modules/pipelines/actions.js @@ -8,6 +8,7 @@ import * as types from './mutation_types'; let eTagPoll; +export const clearEtagPoll = () => (eTagPoll = null); export const stopPipelinePolling = () => eTagPoll.stop(); export const restartPipelinePolling = () => eTagPoll.restart(); |