Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-shell
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
0
Merge Requests
0
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-shell
Commits
3c9ef9eb
Commit
3c9ef9eb
authored
Sep 08, 2016
by
Patricio Cano
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Properly rescue from JSON parse.
parent
a070ae4a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
lib/gitlab_lfs_authentication.rb
lib/gitlab_lfs_authentication.rb
+6
-2
No files found.
lib/gitlab_lfs_authentication.rb
View file @
3c9ef9eb
...
@@ -11,8 +11,12 @@ class GitlabLfsAuthentication
...
@@ -11,8 +11,12 @@ class GitlabLfsAuthentication
end
end
def
self
.
build_from_json
(
json
)
def
self
.
build_from_json
(
json
)
values
=
JSON
.
parse
(
json
)
rescue
nil
begin
self
.
new
(
values
[
'username'
],
values
[
'lfs_token'
],
values
[
'repository_http_path'
])
values
=
JSON
.
parse
(
json
)
self
.
new
(
values
[
'username'
],
values
[
'lfs_token'
],
values
[
'repository_http_path'
])
rescue
nil
end
end
end
def
authentication_payload
def
authentication_payload
...
...
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