Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
c598cd87
Commit
c598cd87
authored
Nov 07, 2017
by
Valery Sizov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix: ArgumentError: comparison of String with nil failed
parent
f56f4d32
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
app/models/geo/project_registry.rb
app/models/geo/project_registry.rb
+2
-2
No files found.
app/models/geo/project_registry.rb
View file @
c598cd87
...
...
@@ -41,14 +41,14 @@ class Geo::ProjectRegistry < Geo::BaseRegistry
def
repository_sync_needed?
(
timestamp
)
return
false
unless
resync_repository?
return
false
if
timestamp
<
repository_retry_at
return
false
if
repository_retry_at
&&
timestamp
<
repository_retry_at
last_repository_synced_at
.
nil?
||
timestamp
>
last_repository_synced_at
end
def
wiki_sync_needed?
(
timestamp
)
return
false
unless
resync_wiki?
return
false
if
timestamp
<
wiki_retry_at
return
false
if
wiki_retry_at
&&
timestamp
<
wiki_retry_at
last_wiki_synced_at
.
nil?
||
timestamp
>
last_wiki_synced_at
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment