Skip to content

Commit

Permalink
Merge pull request #550 from twitter/hotfix/0.8.9
Browse files Browse the repository at this point in the history
Transient Config.
  • Loading branch information
johnynek committed Aug 10, 2013
2 parents 318a98b + 1b3e350 commit ed9daa8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -146,7 +146,7 @@ trait TestMode extends Mode {
override def fileExists(filename : String) : Boolean = fileSet.contains(filename)
}

case class Hdfs(strict : Boolean, conf : Configuration) extends Mode(strict) with HadoopMode {
case class Hdfs(strict : Boolean, @transient conf : Configuration) extends Mode(strict) with HadoopMode {
override def jobConf = conf
override def fileExists(filename : String) : Boolean =
FileSystem.get(jobConf).exists(new Path(filename))
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
@@ -1,2 +1,2 @@

version in ThisBuild := "0.8.8"
version in ThisBuild := "0.8.9"

0 comments on commit ed9daa8

Please sign in to comment.