We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1c42bf commit 34ac5a0Copy full SHA for 34ac5a0
1 file changed
pkg/config/sync.go
@@ -758,9 +758,7 @@ func GetCurrentConfigString(currConfig *controller.OperatorConfiguration) string
758
if workspace.BackupCronJob.Enable != nil && *workspace.BackupCronJob.Enable != *defaultConfig.Workspace.BackupCronJob.Enable {
759
config = append(config, fmt.Sprintf("workspace.backupCronJob.enable=%t", *workspace.BackupCronJob.Enable))
760
}
761
-
762
if workspace.BackupCronJob.Schedule != defaultConfig.Workspace.BackupCronJob.Schedule {
763
- config = append(config, fmt.Sprintf("workspace.backupCronJob.cronJobScript=%s", workspace.BackupCronJob.Schedule))
764
config = append(config, fmt.Sprintf("workspace.backupCronJob.schedule=%s", workspace.BackupCronJob.Schedule))
765
766
if workspace.BackupCronJob.Registry != nil {
0 commit comments