Github user sanjay-saxena commented on a diff in the pull request:

    https://github.com/apache/incubator-toree/pull/147#discussion_r152348050
  
    --- Diff: 
kernel/src/main/scala/org/apache/toree/boot/CommandLineOptions.scala ---
    @@ -100,6 +98,13 @@ class CommandLineOptions(args: Seq[String]) {
         "interpreter-plugin"
       ).withRequiredArg().ofType(classOf[String])
     
    +  private val _spark_context_intialization_timeout = parser.accepts(
    +    "spark-context-intialization-timeout",
    +    "The time (in milliseconds) allowed for creation of the spark context. 
" +
    +      "Failure to create a context in this time could result in duplicate 
initialization messages. " +
    +      "The default value is 100 milliseconds."
    +  ).withRequiredArg().ofType(classOf[Int]).defaultsTo(100)
    --- End diff --
    
    I see the pattern in `resources/compile/application.conf` and 
`resources/compile/reference.conf` for other options with default values. I 
will just follow the pattern for the new option.


---

Reply via email to