diff --git a/CHANGELOG.md b/CHANGELOG.md index 673b5842..a52e4337 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 2.7.0 + +* Ignore intermittent template retrieval errors from Slimmer + # 2.6.0 * Ignore errors that occur in temporary environments (adds `active_sentry_environments` config) (https://github.com/alphagov/govuk_app_config/pull/168) diff --git a/lib/govuk_app_config/govuk_error/configure.rb b/lib/govuk_app_config/govuk_error/configure.rb index e5e615d1..ed8d00df 100644 --- a/lib/govuk_app_config/govuk_error/configure.rb +++ b/lib/govuk_app_config/govuk_error/configure.rb @@ -46,6 +46,7 @@ "GdsApi::TimedOutException", "Mongoid::Errors::DocumentNotFound", "Sinatra::NotFound", + "Slimmer::IntermittentRetrievalError", ] # This will exclude exceptions that are triggered by one of the ignored diff --git a/lib/govuk_app_config/version.rb b/lib/govuk_app_config/version.rb index 4e153926..8b2e14dd 100644 --- a/lib/govuk_app_config/version.rb +++ b/lib/govuk_app_config/version.rb @@ -1,3 +1,3 @@ module GovukAppConfig - VERSION = "2.6.0".freeze + VERSION = "2.7.0".freeze end