Skip to content

Commit f8cfadf

Browse files
committed
Remove persistent actor timeout for validation stats actor
1 parent c2fbb73 commit f8cfadf

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

validation/src/main/scala/hmda/validation/ValidationStats.scala

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,10 @@ class ValidationStats extends HmdaPersistentActor {
114114
state = state.updated(event)
115115
}
116116

117+
override def preStart(): Unit = {
118+
super.preStart()
119+
}
120+
117121
override def receiveCommand: Receive = super.receiveCommand orElse {
118122
case AddSubmissionSubmittedTotal(total, id) =>
119123
persist(SubmissionSubmittedTotalsAdded(total, id)) { e =>

0 commit comments

Comments
 (0)