Skip to content

Commit 17c89c4

Browse files
committed
Apply scalaFmt.
1 parent 628067d commit 17c89c4

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

common/scala/src/main/scala/org/apache/openwhisk/common/Logging.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,8 @@ object LoggingMarkers {
594594
val SCHEDULER_KAFKA_WAIT_TIME =
595595
LogMarkerToken(scheduler, "kafkaWaitTime", counter)(MeasurementUnit.time.milliseconds)
596596
def SCHEDULER_WAIT_TIME(action: String) =
597-
LogMarkerToken(scheduler, "waitTime", counter, Some(action), Map("action" -> action))(MeasurementUnit.time.milliseconds)
597+
LogMarkerToken(scheduler, "waitTime", counter, Some(action), Map("action" -> action))(
598+
MeasurementUnit.time.milliseconds)
598599

599600
def SCHEDULER_KEEP_ALIVE(leaseId: Long) =
600601
LogMarkerToken(scheduler, "keepAlive", counter, None, Map("leaseId" -> leaseId.toString))(MeasurementUnit.none)

tests/src/test/scala/org/apache/openwhisk/common/etcd/EtcdConfigTests.scala

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,8 @@ import org.scalatest.{FlatSpec, Matchers}
77
import org.scalatest.junit.JUnitRunner
88

99
import scala.concurrent.ExecutionContextExecutor
10-
11-
1210
@RunWith(classOf[JUnitRunner])
13-
class EtcdConfigTests
14-
extends FlatSpec
15-
with Matchers
16-
with WskActorSystem {
11+
class EtcdConfigTests extends FlatSpec with Matchers with WskActorSystem {
1712
behavior of "EtcdConfig"
1813

1914
implicit val ece: ExecutionContextExecutor = actorSystem.dispatcher

0 commit comments

Comments
 (0)