Skip to content

Commit

Permalink
Log error on not being able to find version
Browse files Browse the repository at this point in the history
  • Loading branch information
mbryzek committed Jun 3, 2024
1 parent 6fbfb81 commit fca6f0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/app/db/VersionsDao.scala
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ class VersionsDao @Inject() (
def migrateVersionGuid(guid: UUID): ValidatedNec[String, Unit] = {
lookupVersionToMigrate(guid) match {
case None => {
().validNec
"Could not find version to migrate".invalidNec
}

case Some(version) => {
Expand Down

0 comments on commit fca6f0d

Please sign in to comment.