Skip to content

Commit

Permalink
Fix test failures by bumping default Hadoop version to 2.7.6. (PR #36)
Browse files Browse the repository at this point in the history
  • Loading branch information
xkrogen authored Apr 24, 2018
1 parent d0f98e9 commit db15906
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ git:
jdk:
- oraclejdk8
env:
- HADOOP_VERSION=2.7.5
- HADOOP_VERSION=2.7.6
- HADOOP_VERSION=2.8.3
script: "./gradlew test --stacktrace --info -Ddyno.hadoop.bin.version=${HADOOP_VERSION}"
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@
* being available ({@code truncate} is generally required to run Dynamometer).
*
* You can optionally specify which version of HDFS should be started within
* the Dynamometer cluster; the default is 2.7.5. This can be adjusted by setting
* the {@value HADOOP_BIN_VERSION_KEY} property. This will automatically download
* the Dynamometer cluster; the default is {@value HADOOP_BIN_VERSION_DEFAULT}. This can be adjusted
* by setting the {@value HADOOP_BIN_VERSION_KEY} property. This will automatically download
* the correct Hadoop tarball for the specified version. It downloads from an Apache
* mirror (by default {@value DynoInfraUtils#APACHE_DOWNLOAD_MIRROR_DEFAULT}); which mirror
* is used can be controlled with the {@value DynoInfraUtils#APACHE_DOWNLOAD_MIRROR_KEY}
Expand All @@ -86,7 +86,7 @@ public class TestDynamometerInfra {

private static final String HADOOP_BIN_PATH_KEY = "dyno.hadoop.bin.path";
private static final String HADOOP_BIN_VERSION_KEY = "dyno.hadoop.bin.version";
private static final String HADOOP_BIN_VERSION_DEFAULT = "2.7.5";
private static final String HADOOP_BIN_VERSION_DEFAULT = "2.7.6";
private static final String FSIMAGE_FILENAME = "fsimage_0000000000000061740";
private static final String VERSION_FILENAME = "VERSION";

Expand Down

0 comments on commit db15906

Please sign in to comment.