Skip to content

on_finally

on_finally(ctx) runs after every scrape cycle, regardless of success or failure. Defined in defer.lua.

function on_finally(ctx) -> void
Field Type Description
ctx table The cycle context table

None.

function on_finally(ctx)
log("Cycle finished, cleaning up")
_G.temp_data = nil
end