Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
heptapod
heptapod
Commits
a4013d4743f9
Commit
78a5de99
authored
Jul 12, 2016
by
Douglas Barbosa Alexandre
Browse files
Memoize response from `has_rate_limit?` to avoid extra API call
parent
fee872f7c56e
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/gitlab/github_import/client.rb
View file @
a4013d47
...
...
@@ -86,7 +86,9 @@ def rate_limit
end
def
has_rate_limit?
rate_limit
.
present?
return
@has_rate_limit
if
defined?
(
@has_rate_limit
)
@has_rate_limit
=
rate_limit
.
present?
end
def
rate_limit_exceed?
...
...
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