Github user BryanCutler commented on a diff in the pull request:
https://github.com/apache/spark/pull/15119#discussion_r95271119
--- Diff: core/src/main/scala/org/apache/spark/deploy/SparkSubmit.scala ---
@@ -283,8 +284,17 @@ object SparkSubmit extends CommandLineUtils {
} else {
Nil
}
+
+ // Create the IvySettings, either load from file or build defaults
+ val ivySettings = if (Option(args.ivySettingsFile).isDefined) {
--- End diff --
true, that is kind of dumb I guess.. I just realized that since this is
just a conf anyway and not a command-line arg, I don't need
`args.ivySettingsFile` and I could just do
```
val ivySettings = args.sparkProperties.get("spark.jars.ivySettings").map {
ivySettingsFile => ...
```
Look ok to you?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]