Skip to content

v0.69.4-alpha2024120101

Pre-release
Pre-release
Compare
Choose a tag to compare
@denis256 denis256 released this 01 Dec 20:16
· 1 commit to tg-262-error-blocks since this release
6dde255

What's Changed

  • added support for errors block
errors {
    # Retry block for transient errors
    retry "retry_network" {
        retryable_errors = [".*Error: network timeout.*"]
        max_attempts = 3
        sleep_interval_sec = 5
    }

    # Ignore block for non-critical errors
    ignore "ignore_warnings" {
        ignorable_errors = [
            ".*Warning: non-critical issue.*"
        ]
        message = "Ignoring non-critical warnings"
    }
}

RFC: #3134

Full Changelog: v0.69.3...v0.69.4-alpha2024120101