Skip to content

Commit

Permalink
Merge pull request #214 from galasa-dev/iss1479-1685
Browse files Browse the repository at this point in the history
Iss 1479 & 1685 - Updated the successful info message
  • Loading branch information
jadecarino authored Feb 21, 2024
2 parents 053903f + 9c50711 commit 6daedf8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
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)
)

0 comments on commit 6daedf8

Please sign in to comment.