Skip to content

Commit f75b616

Browse files
committed
Fix review points
1 parent 7dc433c commit f75b616

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

common/scala/src/main/scala/org/apache/openwhisk/core/ack/HealthActionAck.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class HealthActionAck(producer: MessageProducer)(implicit logging: Logging, ec:
3333
acknowledegment: AcknowledegmentMessage): Future[Any] = {
3434
implicit val transid: TransactionId = tid
3535

36-
logging.debug(this, s"health action is successfully invoked")
36+
logging.debug(this, s"health action was successfully invoked")
3737
if (activationResult.response.isContainerError || activationResult.response.isWhiskError) {
3838
val actionPath =
3939
activationResult.annotations.getAs[String](WhiskActivation.pathAnnotation).getOrElse("unknown_path")

core/invoker/src/main/scala/org/apache/openwhisk/core/invoker/FPCInvokerReactive.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ class FPCInvokerReactive(config: WhiskConfig,
401401
consumer = None
402402
warmUpWatcher.foreach(_.close())
403403
warmUpWatcher = None
404-
complete("Success disable invoker")
404+
complete("Successfully disabled invoker")
405405
}
406406

407407
override def backfillPrewarm(): Route = {

0 commit comments

Comments
 (0)