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

MTA: fixes number concatenation in string issue #523

Merged
merged 1 commit into from
Nov 28, 2024
Merged
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
10 changes: 5 additions & 5 deletions mta-v7.x/mta.sw.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ functions:
- name: TaskFailedErrorExitMessage
type: expression
operation: '{
exitMessage: "The 1st task of the taskGroup " + .taskgroup.id + " is in failed state"
exitMessage: "The 1st task of the taskGroup " + (.taskgroup.id|tostring) + " is in failed state"
}'
- name: TrackersDoesNotExistErrorExitMessage
type: expression
Expand All @@ -82,22 +82,22 @@ functions:
- name: TrackerDoesNotExistErrorExitMessage
type: expression
operation: '{
exitMessage: "The tracker with the id " + .trackers[0].id + " does not exist, cannot export to the issue manager"
exitMessage: "The tracker with the id " + (.trackers[0].id|tostring) + " does not exist, cannot export to the issue manager"
}'
- name: TrackerProjectsDoesNotExistErrorExitMessage
type: expression
operation: '{
exitMessage: "There are no trackerProjects associated with the tracker with the id " + .tracker.id + ", cannot export to the issue manager"
exitMessage: "There are no trackerProjects associated with the tracker with the id " + (.tracker.id|tostring) + ", cannot export to the issue manager"
}'
- name: TrackerProjectDoesNotExistErrorExitMessage
type: expression
operation: '{
exitMessage: "The trackerProject with the id " + .trackerProjects[0].id + " of the tracker with the id " + .tracker.id + " does not exist, cannot export to the issue manager"
exitMessage: "The trackerProject with the id " + (.trackerProjects[0].id|tostring) + " of the tracker with the id " + (.tracker.id|tostring) + " does not exist, cannot export to the issue manager"
}'
- name: TrackerProjectIssueTypesDoesNotExistErrorExitMessage
type: expression
operation: '{
exitMessage: "There are no trackerProjectIssueTypes in the trackerProject with the id " + .trackerProject.id + " of the tracker with the id "+ .tracker.id +" does not exist, cannot export to the issue manager"
exitMessage: "There are no trackerProjectIssueTypes in the trackerProject with the id " + (.trackerProject.id|tostring) + " of the tracker with the id "+ (.tracker.id|tostring) +", cannot export to the issue manager"
}'
- name: successResult
type: expression
Expand Down