v0.69.4-alpha2024120101
Pre-release
Pre-release
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