Skip to content
This repository has been archived by the owner on Jan 27, 2020. It is now read-only.

Commit

Permalink
Merge pull request #190 from utzwestermann/BigQuery-Support
Browse files Browse the repository at this point in the history
Fixed wrong commandline construction for BigQuery export job in BigQu…
  • Loading branch information
utzwestermann authored Jan 23, 2018
2 parents 89a57cf + 39bb1c6 commit 71f1d02
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -251,13 +251,12 @@ object Export {
.map {
_.v.get
}
.mkString("_")

.mkString("_").toLowerCase

val baseJobParameters: Seq[String] = Seq() ++
(
if (conf("schedoscope.export.isKerberized").asInstanceOf[Boolean])
Seq("-s", "true", "-p", conf("schedoscope.export.kerberosPrincipal").asInstanceOf[String])
Seq("-s", "-p", conf("schedoscope.export.kerberosPrincipal").asInstanceOf[String])
else
Nil
) ++
Expand Down

0 comments on commit 71f1d02

Please sign in to comment.