We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d935ae7 commit 7d02eb5Copy full SHA for 7d02eb5
examples/spark-examples-s3.yaml
@@ -1,3 +1,4 @@
1
+---
2
apiVersion: spark.stackable.tech/v1alpha1
3
kind: SparkApplication
4
metadata:
rust/crd/src/lib.rs
@@ -178,7 +178,12 @@ impl SparkApplication {
178
submit_cmd.extend(driver.spark_config());
179
}
180
181
- submit_cmd.extend(self.spec.main_class.clone().map(|mc| format!{"--class {mc}"}));
+ submit_cmd.extend(
182
+ self.spec
183
+ .main_class
184
+ .clone()
185
+ .map(|mc| format! {"--class {mc}"}),
186
+ );
187
188
submit_cmd.push(artifact.to_string());
189
0 commit comments