Skip to content

Commit

Permalink
Fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
cchriswu committed Jun 4, 2021
1 parent 9fafec3 commit 20509d1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,8 @@ private[spark] object Config extends Logging {
"created.")
.version("3.2.0")
.timeConf(TimeUnit.SECONDS)
.checkValue(value => value > 0, "Allocation driver readiness timeout must be a positive time value.")
.checkValue(value => value > 0, "Allocation driver readiness timeout must be a positive "
+ "time value.")
.createWithDefaultString("1s")

val KUBERNETES_ALLOCATION_EXECUTOR_TIMEOUT =
Expand Down

0 comments on commit 20509d1

Please sign in to comment.