Finish Hotfix-1
All checks were successful
IntegryManagementSystem_Multi/pipeline/head This commit looks good

This commit is contained in:
2024-10-21 13:24:47 +02:00

View File

@@ -151,7 +151,7 @@ public class AsyncManager {
private static long getNextTransactionGroupId(Connection connection, long publicationId) throws Exception {
String retrievePublicationSql = "SELECT * FROM " + StbTransactionLog.ENTITY +
String retrievePublicationSql = "SELECT * FROM " + StbPublications.ENTITY +
" WHERE id = " + publicationId;
final StbPublications stbPublication = UtilityDB.executeSimpleQueryOnlyFirstRowDTO(connection, retrievePublicationSql, StbPublications.class);