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
20ed6c30
Commit
20ed6c30
authored
Mar 01, 2017
by
Nick Thomas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up relative path expansion in bin/elastic_repo_indexer
parent
04fe3d79
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
bin/elastic_repo_indexer
bin/elastic_repo_indexer
+2
-2
No files found.
bin/elastic_repo_indexer
View file @
20ed6c30
...
...
@@ -8,9 +8,9 @@ require 'active_support'
require
'active_support/core_ext'
require
'benchmark'
load
File
.
join
(
File
.
dirname
(
__FILE__
),
'..'
,
'/lib/gitlab/elastic/client.rb'
)
require
File
.
expand_path
(
'../lib/gitlab/elastic/client'
,
File
.
dirname
(
__FILE__
)
)
path_to_log_file
=
File
.
expand_path
(
'../
../log/es-indexer.log'
,
__FILE__
)
path_to_log_file
=
File
.
expand_path
(
'../
log/es-indexer.log'
,
File
.
dirname
(
__FILE__
)
)
LOGGER
=
Logger
.
new
(
path_to_log_file
)
PROJECT_ID
=
ARGV
.
shift
...
...
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