From 99309b45ed4f1ebdf9e0db15d9527ac3e509360f Mon Sep 17 00:00:00 2001 From: Ashwanth Kumar Date: Thu, 14 Jan 2016 10:59:39 +0530 Subject: [PATCH] fixing the compilation issue --- src/main/scala/in/ashwanthkumar/vamana2/Vamana.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/scala/in/ashwanthkumar/vamana2/Vamana.scala b/src/main/scala/in/ashwanthkumar/vamana2/Vamana.scala index 8fe9eda..3bedfbc 100644 --- a/src/main/scala/in/ashwanthkumar/vamana2/Vamana.scala +++ b/src/main/scala/in/ashwanthkumar/vamana2/Vamana.scala @@ -33,8 +33,8 @@ object Vamana extends App { // Step 3 - Update the autoscalar accordingly, if there was a change in # of nodes if(context.currentSize != newNodesCount) { - logInfo(s"Updating ${cluster.name} cluster size to $newNodesCount") - notifier.notify(s"Updating \"${cluster.name}\" size to $newNodesCount from ${context.currentSize}") + logInfo(s"Updating ${cluster.name}, size to $newNodesCount from ${context.currentSize}") + notifier.notify(s"Updating ${cluster.name}, size to $newNodesCount from ${context.currentSize}") autoscalar.scaleTo(cluster.asId, newNodesCount) } })