Skip to content
This repository has been archived by the owner on Feb 17, 2022. It is now read-only.

Latest commit

 

History

History
9 lines (7 loc) · 162 Bytes

Retry.md

File metadata and controls

9 lines (7 loc) · 162 Bytes

Retry

Retry a task n number of times. This is useful in case task are crucial to run but flaky

Retry(times: 2) {
    PrintWorkingDirectory()
}