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
abf60c4c
Commit
abf60c4c
authored
Nov 04, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '6-2-stable' of dev.gitlab.org:gitlab/gitlabhq
parents
c4854635
a811a4fa
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
4 deletions
+7
-4
app/contexts/search_context.rb
app/contexts/search_context.rb
+1
-0
doc/install/installation.md
doc/install/installation.md
+1
-1
lib/tasks/gitlab/check.rake
lib/tasks/gitlab/check.rake
+1
-1
lib/tasks/sidekiq.rake
lib/tasks/sidekiq.rake
+4
-2
No files found.
app/contexts/search_context.rb
View file @
abf60c4c
...
...
@@ -7,6 +7,7 @@ class SearchContext
def
execute
query
=
params
[
:search
]
query
=
Shellwords
.
shellescape
(
query
)
if
query
.
present?
return
result
unless
query
.
present?
...
...
doc/install/installation.md
View file @
abf60c4c
...
...
@@ -122,7 +122,7 @@ GitLab Shell is an ssh access and repository management software developed speci
cd gitlab-shell
# switch to right version
sudo -u git -H git checkout v1.7.
1
sudo -u git -H git checkout v1.7.
4
sudo -u git -H cp config.yml.example config.yml
...
...
lib/tasks/gitlab/check.rake
View file @
abf60c4c
...
...
@@ -736,7 +736,7 @@ namespace :gitlab do
end
def
check_gitlab_shell
required_version
=
Gitlab
::
VersionInfo
.
new
(
1
,
7
,
1
)
required_version
=
Gitlab
::
VersionInfo
.
new
(
1
,
7
,
4
)
current_version
=
Gitlab
::
VersionInfo
.
parse
(
gitlab_shell_version
)
print
"GitLab Shell version >=
#{
required_version
}
? ... "
...
...
lib/tasks/sidekiq.rake
View file @
abf60c4c
...
...
@@ -4,11 +4,13 @@ namespace :sidekiq do
system
"script/background_jobs stop"
end
desc
"GITLAB | Start sidekiq"
do
desc
"GITLAB | Start sidekiq"
task
:start
do
system
"script/background_jobs start"
end
desc
'GitLab | Restart sidekiq'
do
desc
'GitLab | Restart sidekiq'
task
:restart
do
system
"script/background_jobs restart"
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