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
516bf4a9
Commit
516bf4a9
authored
Dec 12, 2017
by
Marin Jankovski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused redis bin configuration.
parent
5a9245e0
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
3 deletions
+3
-3
CHANGELOG
CHANGELOG
+3
-0
config.yml.example
config.yml.example
+0
-1
spec/fixtures/gitlab_config_redis.yml
spec/fixtures/gitlab_config_redis.yml
+0
-1
spec/gitlab_config_spec.rb
spec/gitlab_config_spec.rb
+0
-1
No files found.
CHANGELOG
View file @
516bf4a9
v5.10.3
- Remove unused redis bin configuration
v5.10.2
- Print redirection message when pushing into renamed project
...
...
config.yml.example
View file @
516bf4a9
...
...
@@ -37,7 +37,6 @@ auth_file: "/home/git/.ssh/authorized_keys"
# Redis settings used for pushing commit notices to gitlab
redis:
bin: /usr/bin/redis-cli
# host: 127.0.0.1
# port: 6379
# pass: redispass # Allows you to specify the password for Redis
...
...
spec/fixtures/gitlab_config_redis.yml
View file @
516bf4a9
redis
:
bin
:
/usr/bin/redis-cli
host
:
127.0.1.1
port
:
6378
pass
:
secure
...
...
spec/gitlab_config_spec.rb
View file @
516bf4a9
...
...
@@ -10,7 +10,6 @@ describe GitlabConfig do
config
.
instance_variable_set
(
:@config
,
YAML
.
load
(
config_file
))
end
it
{
config
.
redis
[
'bin'
].
should
eq
(
'/usr/bin/redis-cli'
)
}
it
{
config
.
redis
[
'host'
].
should
eq
(
'127.0.1.1'
)
}
it
{
config
.
redis
[
'port'
].
should
eq
(
6378
)
}
it
{
config
.
redis
[
'database'
].
should
eq
(
1
)
}
...
...
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