Skip to content

Commit

Permalink
cmk-update-config: fix [A/d], press 'c'
Browse files Browse the repository at this point in the history
After this message,
```
"Abort the update process? [A/d] \n"
```
the program looped until users pressed 'c'.

CMK-21208

Change-Id: If838598f8ed1bb69d030f66aac6f3afd0bed0e8f
  • Loading branch information
SoloJacobs committed Jan 16, 2025
1 parent ab90aa6 commit 09bbd4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmk/update_config/plugins/pre_actions/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def _request_user_input_on_incompatible_file(conflict_mode: ConflictMode) -> Res
case ConflictMode.INSTALL | ConflictMode.KEEP_OLD:
return Resume.UPDATE
case ConflictMode.ASK:
return continue_per_users_choice(
return _disable_per_users_choice(
"You can abort the update process (A) or disable the "
"extension package (d) and continue the update process.\n"
"Abort the update process? [A/d] \n"
Expand Down

0 comments on commit 09bbd4a

Please sign in to comment.