Skip to content

Commit

Permalink
Still return current newest version
Browse files Browse the repository at this point in the history
  • Loading branch information
anna-parker committed Sep 10, 2024
1 parent 0db94f0 commit fa4e0cc
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1030,7 +1030,8 @@ class SubmissionDatabaseService(
)
) as newest
where
version != newest.version AND newest.version is not null;
current_processing_pipeline.version != newest.version AND newest.version is not null
returning newest.version;
""".trimIndent()
var newVersion: Long? = null
transaction {
Expand Down

0 comments on commit fa4e0cc

Please sign in to comment.