Skip to content

Commit

Permalink
Added required S3 libraries to classpath
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Warneke committed Jul 7, 2011
1 parent a847319 commit 4a9aa74
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ constructJobManagerClassPath() {
add=1
elif [[ "$jarfile" =~ 'nephele-hdfs' ]]; then
add=1
elif [[ "$jarfile" =~ 'nephele-s3' ]]; then
add=1
elif [[ "$jarfile" =~ 'nephele-profiling' ]]; then
add=1
elif [[ "$jarfile" =~ 'nephele-queuescheduler' ]]; then
Expand All @@ -79,6 +81,12 @@ constructJobManagerClassPath() {
add=1
elif [[ "$jarfile" =~ 'hadoop-core' ]]; then
add=1
elif [[ "$jarfile" =~ 'httpcore' ]]; then
add=1
elif [[ "$jarfile" =~ 'httpclient' ]]; then
add=1
elif [[ "$jarfile" =~ 'aws-java-sdk' ]]; then
add=1
fi

if [[ "$add" = "1" ]]; then
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ constructTaskManagerClassPath() {
add=1
elif [[ "$jarfile" =~ 'nephele-hdfs' ]]; then
add=1
elif [[ "$jarfile" =~ 'nephele-s3' ]]; then
add=1
elif [[ "$jarfile" =~ 'nephele-profiling' ]]; then
add=1
elif [[ "$jarfile" =~ 'pact-common' ]]; then
Expand All @@ -62,6 +64,12 @@ constructTaskManagerClassPath() {
add=1
elif [[ "$jarfile" =~ 'hadoop-core' ]]; then
add=1
elif [[ "$jarfile" =~ 'httpcore' ]]; then
add=1
elif [[ "$jarfile" =~ 'httpclient' ]]; then
add=1
elif [[ "$jarfile" =~ 'aws-java-sdk' ]]; then
add=1
fi

if [[ "$add" = "1" ]]; then
Expand Down

0 comments on commit 4a9aa74

Please sign in to comment.