Skip to content

Commit

Permalink
Fix pipeline on preview branch
Browse files Browse the repository at this point in the history
  • Loading branch information
mgoworko committed Oct 22, 2024
1 parent bd66f6e commit acf48a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ trait NuResourcesTest
forwardedUserName = None
)
for {
_ <- dbioRunner.runInTransaction(writeProcessRepository.saveNewProcess(action))
_ <- dbioRunner.runInSerializableTransactionWithRetry(writeProcessRepository.saveNewProcess(action))
id <- futureFetchingScenarioRepository.fetchProcessId(processName).map(_.get)
} yield id
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ private[test] class ScenarioHelper(dbRef: DbRef, clock: Clock, designerConfig: C
forwardedUserName = None
)
for {
_ <- dbioRunner.runInTransaction(writeScenarioRepository.saveNewProcess(action))
_ <- dbioRunner.runInSerializableTransactionWithRetry(writeScenarioRepository.saveNewProcess(action))
id <- futureFetchingScenarioRepository.fetchProcessId(scenarioName).map(_.get)
} yield id
}
Expand Down

0 comments on commit acf48a7

Please sign in to comment.