Skip to content

Commit

Permalink
fixed bug with recovery timer
Browse files Browse the repository at this point in the history
  • Loading branch information
jacum committed May 13, 2024
1 parent 13988d0 commit fee004c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Sensors' bundled dashboards will be imported.
```
libraryDependencies ++=
Seq(
"nl.pragmasoft.pekko" %% "sensors" % "1.0.2",
"nl.pragmasoft.pekko" %% "sensors" % "1.0.3",
)
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ trait PersistentActorMetrics extends ActorMetrics with PersistentActor {
private var recovered: Boolean = false
private lazy val recoveries = metrics.recoveries.labels(actorLabel)
private lazy val recoveryEvents = metrics.recoveryEvents.labels(actorLabel)
private lazy val recoveryTime = metrics.recoveryTime.labels(actorLabel).startTimer()
private val recoveryTime = metrics.recoveryTime.labels(actorLabel).startTimer()
private lazy val recoveryFailures = metrics.recoveryFailures.labels(actorLabel)
private lazy val persistFailures = metrics.persistFailures.labels(actorLabel)
private lazy val persistRejects = metrics.persistRejects.labels(actorLabel)
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ThisBuild / version := "1.0.2-SNAPSHOT"
ThisBuild / version := "1.0.3-SNAPSHOT"

0 comments on commit fee004c

Please sign in to comment.