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
d5486093
Commit
d5486093
authored
Nov 08, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'refactor_redis' of /home/git/repositories/gitlab/gitlab-shell
parents
e6802540
6c8c9ff5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
5 deletions
+7
-5
lib/gitlab_config.rb
lib/gitlab_config.rb
+3
-3
lib/gitlab_update.rb
lib/gitlab_update.rb
+4
-2
No files found.
lib/gitlab_config.rb
View file @
d5486093
...
...
@@ -48,12 +48,12 @@ class GitlabConfig
if
redis
.
empty?
# Default to old method of connecting to redis
# for users that haven't updated their configuration
"env -i redis-cli"
%W(env -i redis-cli)
else
if
redis
.
has_key?
(
"socket"
)
"
#{
redis
[
'bin'
]
}
-s
#{
redis
[
'socket'
]
}
"
%W(
#{
redis
[
'bin'
]
}
-s
#{
redis
[
'socket'
]
}
)
else
"
#{
redis
[
'bin'
]
}
-h
#{
redis
[
'host'
]
}
-p
#{
redis
[
'port'
]
}
"
%W(
#{
redis
[
'bin'
]
}
-h
#{
redis
[
'host'
]
}
-p
#{
redis
[
'port'
]
}
)
end
end
end
...
...
lib/gitlab_update.rb
View file @
d5486093
require_relative
'gitlab_init'
require_relative
'gitlab_net'
require
'json'
class
GitlabUpdate
attr_reader
:config
...
...
@@ -53,7 +54,8 @@ class GitlabUpdate
end
def
update_redis
command
=
"
#{
config
.
redis_command
}
rpush '
#{
config
.
redis_namespace
}
:queue:post_receive' '{
\"
class
\"
:
\"
PostReceive
\"
,
\"
args
\"
:[
\"
#{
@repo_path
}
\"
,
\"
#{
@oldrev
}
\"
,
\"
#{
@newrev
}
\"
,
\"
#{
@refname
}
\"
,
\"
#{
@key_id
}
\"
]}' > /dev/null 2>&1"
system
(
command
)
queue
=
"
#{
config
.
redis_namespace
}
:queue:post_receive"
msg
=
JSON
.
dump
({
'class'
=>
'PostReceive'
,
'args'
=>
[
@repo_path
,
@oldrev
,
@newrev
,
@refname
,
@key_id
]})
system
(
*
config
.
redis_command
,
'rpush'
,
queue
,
msg
,
err:
'/dev/null'
,
out:
'/dev/null'
)
end
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