Skip to content

Commit d83c746

Browse files
committed
fix: Typo in exxecutor cpu limit property
1 parent f744e7b commit d83c746

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rust/crd/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -813,7 +813,7 @@ fn resources_to_executor_props(
813813
"spark.kubernetes.executor.request.cores".to_string(),
814814
cores.clone(),
815815
);
816-
props.insert("spark.kubernetes.executors.limit.cores".to_string(), cores);
816+
props.insert("spark.kubernetes.executor.limit.cores".to_string(), cores);
817817
}
818818

819819
if let Resources {
@@ -1532,7 +1532,7 @@ spec:
15321532
"512m".to_string(),
15331533
),
15341534
(
1535-
"spark.kubernetes.executors.limit.cores".to_string(),
1535+
"spark.kubernetes.executor.limit.cores".to_string(),
15361536
"2".to_string(),
15371537
),
15381538
]

0 commit comments

Comments
 (0)