mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-18 20:15:14 +02:00
5 lines
84 B
Ruby
5 lines
84 B
Ruby
def leak_connection
|
|||
conn = PG.connect(dbname: 'test')
|
|||
conn.exec("SELECT 1")
|
|||
end
|