temp dirs created using mkdtemp(), as we do when logging into Launchpad, aren't cleaned up.
In production it's semi OK as we run with PrivateTmp=yes, but for development it's a bit ugly.
Suggestion is to define a close() in the base class, and let metrics override that to clean up their tmp dir.
temp dirs created using
mkdtemp(), as we do when logging into Launchpad, aren't cleaned up.In production it's semi OK as we run with
PrivateTmp=yes, but for development it's a bit ugly.Suggestion is to define a
close()in the base class, and let metrics override that to clean up their tmp dir.