diff --git a/CHANGELOG.md b/CHANGELOG.md index d3595e0aff9..749dfa16087 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ * [CHANGE] Upgrade Cortex from v1.3.0 to v.1.4.0 [#341](https://github.com/grafana/tempo/pull/341) * [ENHANCEMENT] Add tempodb_compaction_objects_combined metric. [#339](https://github.com/grafana/tempo/pull/339) * [BUGFIX] Frequent errors logged by compactor regarding meta not found [#327](https://github.com/grafana/tempo/pull/327) +* [BUGFIX] Fix distributors panicking on rollout [#343](https://github.com/grafana/tempo/pull/343) ## v0.3.0 diff --git a/modules/distributor/receiver/shim.go b/modules/distributor/receiver/shim.go index 8f6556b9dab..09e669dd4cb 100644 --- a/modules/distributor/receiver/shim.go +++ b/modules/distributor/receiver/shim.go @@ -184,7 +184,6 @@ func (r *receiversShim) ConsumeTraces(ctx context.Context, td pdata.Traces) erro // implements component.Host func (r *receiversShim) ReportFatalError(err error) { level.Error(util.Logger).Log("msg", "fatal error reported", "err", err) - panic(fmt.Sprintf("Fatal error %v", err)) } // implements component.Host