Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

- By adding `.no-cache` to the DSN key, Relay refreshes project configuration caches immediately. This allows to apply changed settings instantly, such as updates to data scrubbing or inbound filter rules. ([#911](https://github.com/getsentry/relay/pull/911))

**Bug Fixes**:

- Log on INFO level when recovering from network outages. ([#918](https://github.com/getsentry/relay/pull/918))

**Internal**:

- Compatibility mode for pre-aggregated sessions was removed. The feature is now enabled by default in full fidelity. ([#913](https://github.com/getsentry/relay/pull/913))
Expand Down
5 changes: 4 additions & 1 deletion relay-server/src/actors/upstream.rs
Original file line number Diff line number Diff line change
Expand Up @@ -487,9 +487,12 @@ impl UpstreamRelay {

/// Called when a message to the upstream goes through without a network error.
fn reset_network_error(&mut self) {
if self.outage_backoff.started() {
relay_log::info!("Recovering from network outage.")
}

self.first_error = None;
self.outage_backoff.reset();
relay_log::debug!("Recovering from network outage.")
}

fn upstream_connection_check(&mut self, ctx: &mut Context<Self>) {
Expand Down