function _tryWithRetry()

in index.js [242:255]


    function _tryWithRetry(retryName, queue, fn, cb) {
        if (retryErrors) {
            self._doThenQueue(queue, {
                retryName: retryName,
                fn: fn,
                cb: cb
            });
        } else {
            fn(function _noRetry() {
                // Ignore errors
                cb.apply(cb, [null].concat(Array.prototype.slice.call(arguments, 1)));
            });
        }
    }