Skip to content
Snippets Groups Projects
Commit fb1cd0a8 authored by Ben Bodenmiller's avatar Ben Bodenmiller
Browse files

fix stuck MR

fixes #348. related to 64874193.
parent 4ab717ea
No related branches found
No related tags found
1 merge request!517fix stuck MR
Loading
@@ -73,6 +73,7 @@ v 7.10.0 (unreleased)
Loading
@@ -73,6 +73,7 @@ v 7.10.0 (unreleased)
- Fix git over ssh errors 'fatal: protocol error: bad line length character' - Fix git over ssh errors 'fatal: protocol error: bad line length character'
- Automatically setup GitLab CI project for forks if origin project has GitLab CI enabled - Automatically setup GitLab CI project for forks if origin project has GitLab CI enabled
- Bust group page project list cache when namespace name or path changes. - Bust group page project list cache when namespace name or path changes.
- Fix stuck Merge Request merging events from old installations (Ben Bodenmiller)
   
v 7.9.3 v 7.9.3
- Contains no changes - Contains no changes
Loading
Loading
Loading
@@ -361,6 +361,6 @@ class MergeRequest < ActiveRecord::Base
Loading
@@ -361,6 +361,6 @@ class MergeRequest < ActiveRecord::Base
end end
   
def locked_long_ago? def locked_long_ago?
locked_at && locked_at < (Time.now - 1.day) locked_at.nil? || locked_at < (Time.now - 1.day)
end end
end end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment