Skip to content

CAT 028

unurgunite edited this page Jul 11, 2026 · 3 revisions

CAT-028 — HTTP::Client resource leak

Field Value
Severity error
Confidence high
Auto-fix

HTTP::Client resource leak — HTTP::Client connections must be closed after use. Use the block form or ensure close is called.

Bad code

client = HTTP::Client.new("example.com")
response = client.get("/")

Clone this wiki locally