Skip to content

Commit 617fd36

Browse files
authored
Merge pull request cfpb#1051 from nickgrippin/fix-for-yield
Add yield comprehension to IRS
2 parents 17cbaf2 + 12ae858 commit 617fd36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

persistence/src/main/scala/hmda/persistence/processing/HmdaFileValidator.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ class HmdaFileValidator(submissionId: SubmissionId) extends HmdaPersistentActor
258258
if (state.readyToSign) {
259259
for {
260260
stat <- statRef
261-
} stat ! PersistIrs
261+
} yield stat ! PersistIrs
262262
log.debug(s"Validation completed for $submissionId")
263263
replyTo ! ValidationCompleted(originalSender)
264264
} else {

0 commit comments

Comments
 (0)