Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
atlas
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
dataplatform
atlas
Commits
7b07a222
Commit
7b07a222
authored
Jan 28, 2016
by
Shwetha GS
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ATLAS-450 quick_start fails on cygwin (dkantor via shwethags)
parent
19f24d50
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
2 deletions
+12
-2
quick_start.py
distro/src/bin/quick_start.py
+11
-2
release-log.txt
release-log.txt
+1
-0
No files found.
distro/src/bin/quick_start.py
View file @
7b07a222
...
...
@@ -30,11 +30,18 @@ def main():
confdir
=
mc
.
dirMustExist
(
mc
.
confDir
(
atlas_home
))
mc
.
executeEnvSh
(
confdir
)
logdir
=
mc
.
dirMustExist
(
mc
.
logDir
(
atlas_home
))
if
mc
.
isCygwin
():
# Pathnames that are passed to JVM must be converted to Windows format.
jvm_atlas_home
=
mc
.
convertCygwinPath
(
atlas_home
)
jvm_logdir
=
mc
.
convertCygwinPath
(
logdir
)
else
:
jvm_atlas_home
=
atlas_home
jvm_logdir
=
logdir
#create sys property for conf dirs
jvm_opts_list
=
(
ATLAS_LOG_OPTS
%
logdir
)
.
split
()
jvm_opts_list
=
(
ATLAS_LOG_OPTS
%
jvm_
logdir
)
.
split
()
cmd_opts
=
(
ATLAS_COMMAND_OPTS
%
atlas_home
)
cmd_opts
=
(
ATLAS_COMMAND_OPTS
%
jvm_
atlas_home
)
jvm_opts_list
.
extend
(
cmd_opts
.
split
())
default_jvm_opts
=
DEFAULT_JVM_OPTS
...
...
@@ -50,6 +57,8 @@ def main():
+
os
.
path
.
join
(
web_app_dir
,
"atlas"
,
"WEB-INF"
,
"classes"
)
+
p
\
+
os
.
path
.
join
(
web_app_dir
,
"atlas"
,
"WEB-INF"
,
"lib"
,
"*"
)
+
p
\
+
os
.
path
.
join
(
atlas_home
,
"libext"
,
"*"
)
if
mc
.
isCygwin
():
atlas_classpath
=
mc
.
convertCygwinPath
(
atlas_classpath
,
True
)
process
=
mc
.
java
(
"org.apache.atlas.examples.QuickStart"
,
sys
.
argv
[
1
:],
atlas_classpath
,
jvm_opts_list
)
return
process
.
wait
()
...
...
release-log.txt
View file @
7b07a222
...
...
@@ -7,6 +7,7 @@ ATLAS-409 Atlas will not import avro tables with schema read from a file (dosset
ATLAS-379 Create sqoop and falcon metadata addons (venkatnrangan,bvellanki,sowmyaramesh via shwethags)
ALL CHANGES:
ATLAS-450 quick_start fails on cygwin (dkantor via shwethags)
ATLAS-451 Doc: Fix few broken links due to Wiki words in Atlas documentation (ssainath via shwethags)
ATLAS-439 Investigate apache build failure - EntityJerseyResourceIT.testEntityDeduping (shwethags)
ATLAS-426 atlas_start fails on cygwin (dkantor via shwethags)
...
...
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