Skip to content

Commit 298f1b9

Browse files
authored
[Feature] [Platform] SchedulerV2 Defaults Revert (#1921)
1 parent 4aaeb60 commit 298f1b9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
- (Feature) (Platform) Service Handler Implementation
99
- (Feature) (Platform) Packer
1010
- (Feature) Manual Upgrade Mode
11+
- (Feature) (Platform) SchedulerV2 Defaults Revert
1112

1213
## [1.2.49](https://github.com/arangodb/kube-arangodb/tree/1.2.49) (2025-06-17)
1314
- (Maintenance) Optimize go.mod

integrations/scheduler/v2/definition/helpers.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ func (i *SchedulerV2InstallRequestOptions) Options() []util.Mod[action.Install]
9191
if v := i.GetLabels(); len(v) > 0 {
9292
opts = append(opts, func(in *action.Install) {
9393
in.Labels = v
94-
in.Wait = util.OptionalType(i.Wait, true)
94+
in.Wait = util.OptionalType(i.Wait, false)
9595
})
9696
}
9797

@@ -108,7 +108,7 @@ func (i *SchedulerV2UpgradeRequestOptions) Options() []util.Mod[action.Upgrade]
108108
if v := i.GetLabels(); len(v) > 0 {
109109
opts = append(opts, func(in *action.Upgrade) {
110110
in.Labels = v
111-
in.Wait = util.OptionalType(i.Wait, true)
111+
in.Wait = util.OptionalType(i.Wait, false)
112112
})
113113
}
114114

0 commit comments

Comments
 (0)