Skip to content

Commit ebec29a

Browse files
committed
Fix endless reconcile loop
1 parent 1bd36cd commit ebec29a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rust/operator-binary/src/crd/history.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ impl v1alpha1::SparkHistoryServer {
260260
let role = self.role();
261261
let history_jvm_args = construct_history_jvm_args(role, role_group, logdir)
262262
.context(ConstructJvmArgumentsSnafu)?;
263-
let mut envs = HashMap::from([
263+
let mut envs = BTreeMap::from([
264264
// Needed by the `containerdebug` running in the background of the history container
265265
// to log it's tracing information to.
266266
(

0 commit comments

Comments
 (0)