Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,11 @@ class CommandLineOptions(args: Seq[String]) {
"directory where user added jars are stored (MUST EXIST)"
).withRequiredArg().ofType(classOf[String])

private val _deps_dir = parser.accepts(
"deps-dir",
"directory where user dependencies are stored (MUST EXIST)"
).withRequiredArg().ofType(classOf[String])

private val _default_interpreter =
parser.accepts("default-interpreter", "default interpreter for the kernel")
.withRequiredArg().ofType(classOf[String])
Expand Down Expand Up @@ -171,6 +176,7 @@ class CommandLineOptions(args: Seq[String]) {
"max_interpreter_threads" -> get(_max_interpreter_threads),
"alternate_sigint" -> get(_alternate_sigint),
"jar_dir" -> get(_jar_dir),
"deps_dir" -> get(_deps_dir),
"default_interpreter" -> get(_default_interpreter),
// deprecated in favor of spark-context-initialization-mode none
// "nosparkcontext" -> (if (has(_nosparkcontext)) Some(true) else Some(false)),
Expand Down