From 2ce0c726fc0f63434e1680a41deb8848ae69295e Mon Sep 17 00:00:00 2001 From: Maciej Kwidzinski Date: Tue, 9 Jan 2024 17:26:47 +0100 Subject: [PATCH] Clean up `start node X` task name --- CHANGELOG.md | 3 +++ .../tools/awsinfrastructure/jira/DiagnosableStoppedNode.kt | 2 ++ 2 files changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c742745e..2c984548 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,9 @@ Dropping a requirement of a major version of a dependency is a new contract. ## [Unreleased] [Unreleased]: https://github.com/atlassian/aws-infrastructure/compare/release-3.1.4...master +### Fixed +- Clean up `start node X` task name. + ## [3.1.4] - 2024-01-03 [3.1.4]: https://github.com/atlassian/aws-infrastructure/compare/release-3.1.3...release-3.1.4 diff --git a/src/main/kotlin/com/atlassian/performance/tools/awsinfrastructure/jira/DiagnosableStoppedNode.kt b/src/main/kotlin/com/atlassian/performance/tools/awsinfrastructure/jira/DiagnosableStoppedNode.kt index 814806fc..26ed81b1 100644 --- a/src/main/kotlin/com/atlassian/performance/tools/awsinfrastructure/jira/DiagnosableStoppedNode.kt +++ b/src/main/kotlin/com/atlassian/performance/tools/awsinfrastructure/jira/DiagnosableStoppedNode.kt @@ -13,4 +13,6 @@ internal class DiagnosableStoppedNode( } catch (e: Exception) { throw Exception("Failed to start $nodeIdentifier", e) } + + override fun toString() = node.toString() } \ No newline at end of file