Openbravo Issue Tracking System - Openbravo ERP
View Issue Details
0058102Openbravo ERPA. Platformpublic2025-02-24 14:272025-02-28 12:08
alostale 
Triage Platform Base 
normalmajorhave not tried
closedfixed 
5
 
PR25Q1PR25Q1 
approved
No
Core
No
0058102: websocket infra: DB transaction remains open
When websockets is enabled, a DB transaction is kept open forever not being returnd to the pool.
1. Activate Websockets: set "Enable Message Client Manager" preference to Y
2. Restart Tomcat
3. Check pg_stat_activity, there is a transaction that is created on Tomcat start and reused to check pending messages every 10s.

select xact_start, state_change, query from pg_stat_activity where state = 'idle in transaction';
          xact_start           |         state_change         |                                                                                                                                                                                                                                                                                                      
query                                                                                                                                                                                                                                                                                                      

-------------------------------+------------------------------+-------------------------------------------------------------------------
 
2025-02-24 14:09:39.901561+01 | 2025-02-24 14:26:19.80062+01 | select this_.C_Persisted_Message_ID as 
c_persis1_278_0_, this_.AD_Client_ID as ad_clien2_278_0_, this_.AD_Org_ID as ad_org_i3_278_0_, this_.Isactive 
as isactive4_278_0_, this_.Created as created5_278_0_, this_.Createdby as createdb6_278_0_, this_.Updated 
as updated7_278_0_, this_.Updatedby as updatedb8_278_0_, this_.Payload as payload9_278_0_, this_.Type 
as type10_278_0_, this_.Expirationdate as expirat11_278_0_, this_.Context as context12_278_0_ from C_Persisted_Message 
this_ where this_.Expirationdate>=$1 and this_.Created>$2 and this_.Isactive=$3 order by this_.Created 
asc limit $4
No tags attached.
blocks defect 0058060 closed Triage Platform Base websocket infra: DB transaction remains open 
Issue History
2025-02-27 16:50cbernerTypedefect => backport
2025-02-27 16:50cbernerTarget Version => PR25Q1
2025-02-27 16:53hgbotNote Added: 0176244
2025-02-28 12:08hgbotMerge Request Statusopen => approved
2025-02-28 12:08hgbotResolutionopen => fixed
2025-02-28 12:08hgbotStatusscheduled => closed
2025-02-28 12:08hgbotFixed in Version => PR25Q1
2025-02-28 12:08hgbotNote Added: 0176288
2025-02-28 12:08hgbotNote Added: 0176289

Notes
(0176244)
hgbot   
2025-02-27 16:53   
Merge Request created: https://gitlab.com/orisha-group/bu-commerce/openbravo/product/openbravo/-/merge_requests/1565 [^]
(0176288)
hgbot   
2025-02-28 12:08   
Directly closing issue as related merge request is already approved.

Repository: https://gitlab.com/orisha-group/bu-commerce/openbravo/product/openbravo [^]
Changeset: cd78e858595fafb6c5829d304731b1c2bb20b75a
Author: Cristian Berner <cristian.berner@openbravo.com>
Date: 28-02-2025 11:08:40
URL: https://gitlab.com/orisha-group/bu-commerce/openbravo/product/openbravo/-/commit/cd78e858595fafb6c5829d304731b1c2bb20b75a [^]

Fixes ISSUE-58102: websocket infra: DB transaction remains open

Closes transactions on all DatabaseMessageRegistryPersistence methods.
These methods are outside of a DAL controlled Thread and need to be
closed intentionally.

---
M modules/org.openbravo.client.application/src/org/openbravo/client/application/messageclient/DatabaseMessageRegistryPersistence.java
---
(0176289)
hgbot   
2025-02-28 12:08   
Merge request merged: https://gitlab.com/orisha-group/bu-commerce/openbravo/product/openbravo/-/merge_requests/1565 [^]