mirror of
https://git.freebsd.org/ports.git
synced 2025-05-24 15:07:01 -04:00
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
9 lines
411 B
Text
9 lines
411 B
Text
Retryable uns a code block, and retries it when an exception occurs. It's great
|
|
when working with flakey webservices (for example).
|
|
|
|
It's configured using four optional parameters :tries, :on, :sleep, :matching,
|
|
:ensure, :exception_cb and runs the passed block. Should an exception occur,
|
|
it'll retry for (n-1) times.
|
|
|
|
Should the number of retries be reached without success, the last exception will
|
|
be raised.
|