Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Iss 1479 & 1685 - Updated the successful info message #214

Merged
merged 2 commits into from
Feb 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docs/generated/errors-list.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,5 +141,7 @@ The `galasactl` tool can generate the following errors:

- GAL2502I: Rendered {} image files.

- GAL2503I: Run '{}' has been reset successfully.
- GAL2504I: Run '{}' has been cancelled successfully.
- GAL2503I: The request to reset run '{}' has been accepted by the server.

- GAL2504I: The request to cancel run '{}' has been accepted by the server.

4 changes: 2 additions & 2 deletions pkg/errors/errorMessage.go
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,6 @@ var (
// Information messages...
GALASA_INFO_FOLDER_DOWNLOADED_TO = NewMessageType("GAL2501I: Downloaded %d artifacts to folder '%s'\n", 2501, STACK_TRACE_NOT_WANTED)
GALASA_INFO_RENDERED_IMAGE_COUNT = NewMessageType("GAL2502I: Rendered %d image files.\n", 2502, STACK_TRACE_NOT_WANTED)
GALASA_INFO_RUNS_RESET_SUCCESS = NewMessageType("GAL2503I: Run '%s' has been reset successfully.", 2503, STACK_TRACE_NOT_WANTED)
GALASA_INFO_RUNS_CANCEL_SUCCESS = NewMessageType("GAL2504I: Run '%s' has been cancelled successfully.", 2504, STACK_TRACE_NOT_WANTED)
GALASA_INFO_RUNS_RESET_SUCCESS = NewMessageType("GAL2503I: The request to reset run '%s' has been accepted by the server.\n", 2503, STACK_TRACE_NOT_WANTED)
GALASA_INFO_RUNS_CANCEL_SUCCESS = NewMessageType("GAL2504I: The request to cancel run '%s' has been accepted by the server.\n", 2504, STACK_TRACE_NOT_WANTED)
)