@mikeyt23/node-cli-utils
    Preparing search index...

    Interface WithRetryOptions

    Options for withRetryAsync.

    interface WithRetryOptions {
        functionLabel?: string;
        initialDelayMilliseconds: number;
        logIntermediateErrors: boolean;
        traceEnabled: boolean;
    }
    Index

    Properties

    functionLabel?: string

    Use this in log messages instead of the function name (useful for passing lambdas which would otherwise display as "anonymous").

    initialDelayMilliseconds: number

    Number of milliseconds to wait before the first attempt.

    logIntermediateErrors: boolean

    Log all errors rather than just the last one after all retries fail. If true, this setting overrides library trace and this method's traceEnabled option.

    traceEnabled: boolean

    If NodeCliUtilsConfig.traceEnabled is true then messages will be logged even if this option is false. Set to true to log messages even if Node ]