"http" should be able to resume #17
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Is it a bug or a feature request?
A feature request
Describe what happens
Let's say there is an audio based on the
http
kind. The file it is downloading is very big, so downloading takes a long time.Since this is problematic for larigira, a sysadmin might want to execute the action with large advance (manually, using
cron
), running thislarigira
should be able to behave appropriately, and use this cached file. This doesn't work, because thehttp
audiogenerator usesmkstemp
, which creates a random file name, so this could never possibly work.what should happen, instead?
running it twice should be idempotent.
describe all the steps we can do to reproduce the bug
run the aforementioned command two times. the second time you run it, network transfer should be very small. The same filename should be used.
branch
http-improve
seems to be working, but need real-life tests before getting merged.