Loading
Maintain correlation_id across Sidekiq retries
Previously this code was overriding the correlation_id in the `job` hash. That's because retries were generating a new context and this new context had a new random `correlation_id`. Now we take the previous `correlation_id` into account when generating a new context. This resolves gitlab-org/gitlab#440700