Skip to content
Snippets Groups Projects
Commit 31e174db authored by Mike Greiling's avatar Mike Greiling Committed by 🤖 GitLab Bot 🤖
Browse files

Merge branch 'fix-comment-race-condition' into 'master'

Fix race condition with polling when saving notes

Closes gitlab-ee#12472

See merge request gitlab-org/gitlab-ce!30724

(cherry picked from commit ca56311d)

fcc7d5c0 Fix race condition with polling when saving notes
parent 0d9afa5d
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -357,11 +357,11 @@ export const poll = ({ commit, state, getters, dispatch }) => {
};
 
export const stopPolling = () => {
eTagPoll.stop();
if (eTagPoll) eTagPoll.stop();
};
 
export const restartPolling = () => {
eTagPoll.restart();
if (eTagPoll) eTagPoll.restart();
};
 
export const fetchData = ({ commit, state, getters }) => {
Loading
Loading
---
title: Fix commenting before discussions are loaded
merge_request: 30724
author:
type: fixed
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment