pietermartin / sqlg

TinkerPop graph over sql
MIT License
240 stars 51 forks source link

Postgresql notify listener must use separate connection #488

Closed pietermartin closed 1 year ago

pietermartin commented 1 year ago

Currently the topology change listener uses a jdbc connection from the pool. However the pool might be configured to evict long running connections which then kills the change listener. Need to use a regular connection not coming from the pool.