Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[serverless/proxy]: override default ErrorHandler #32326

Merged
merged 1 commit into from
Dec 18, 2024

Conversation

RomainMuller
Copy link
Contributor

@RomainMuller RomainMuller commented Dec 18, 2024

Motivation

The default error handler logs "http: proxy error: %v" then returns an HTTP 502 (bad gateway) response. This is unfortunate because it lacks much any context on the original request that failed, and the commonly observed error today is "context deadline exceeded", which is not actionnable if you don't know what request it was for. It also logs to STDERR and does not honor the agent's log level.

What does this PR do?

To address this, we introduce a custom error handler function that logs the error with some relevant dynamic context using log.Debugf, and returns an HTTP 502 and HTTP 504 response depending on whether the error is a context.DeadlineExceeded error or not.

Additional Info

Related: SLES-1994 ZD1942569

@RomainMuller RomainMuller requested review from a team as code owners December 18, 2024 10:31
@github-actions github-actions bot added the short review PR is simple enough to be reviewed quickly label Dec 18, 2024
@RomainMuller RomainMuller added changelog/no-changelog qa/done QA done before merge and regressions are covered by tests labels Dec 18, 2024
@RomainMuller RomainMuller force-pushed the romain.marcadier/http-proxy-error-log branch from ef8b8af to 0cdc66d Compare December 18, 2024 10:40
The default error handler logs "http: proxy error: %v" then returns an HTTP 502 (bad gateway)
response. This is unfortunate because it lacks much any context on the original request that
failed, and the commonly observed error today is "context deadline exceeded", which is not
actionnable if you don't know what request it was for. It also logs to STDERR and does not
honor the agent's log level.

To address this, we introduce a custom error handler function that logs the error with some
relevant dynamic context using `log.Debugf`, and returns an HTTP 502 and HTTP 504 response
depending on whether the error is a `context.DeadlineExceeded` error or not.
@RomainMuller RomainMuller force-pushed the romain.marcadier/http-proxy-error-log branch from 0cdc66d to 1aede34 Compare December 18, 2024 10:52
Copy link
Contributor

Serverless Benchmark Results

BenchmarkStartEndInvocation comparison between 459aa24 and a87a470.

tl;dr

Use these benchmarks as an insight tool during development.

  1. Skim down the vs base column in each chart. If there is a ~, then there was no statistically significant change to the benchmark. Otherwise, ensure the estimated percent change is either negative or very small.

  2. The last row of each chart is the geomean. Ensure this percentage is either negative or very small.

What is this benchmarking?

The BenchmarkStartEndInvocation compares the amount of time it takes to call the start-invocation and end-invocation endpoints. For universal instrumentation languages (Dotnet, Golang, Java, Ruby), this represents the majority of the duration overhead added by our tracing layer.

The benchmark is run using a large variety of lambda request payloads. In the charts below, there is one row for each event payload type.

How do I interpret these charts?

The charts below comes from benchstat. They represent the statistical change in duration (sec/op), memory overhead (B/op), and allocations (allocs/op).

The benchstat docs explain how to interpret these charts.

Before the comparison table, we see common file-level configuration. If there are benchmarks with different configuration (for example, from different packages), benchstat will print separate tables for each configuration.

The table then compares the two input files for each benchmark. It shows the median and 95% confidence interval summaries for each benchmark before and after the change, and an A/B comparison under "vs base". ... The p-value measures how likely it is that any differences were due to random chance (i.e., noise). The "~" means benchstat did not detect a statistically significant difference between the two inputs. ...

Note that "statistically significant" is not the same as "large": with enough low-noise data, even very small changes can be distinguished from noise and considered statistically significant. It is, of course, generally easier to distinguish large changes from noise.

Finally, the last row of the table shows the geometric mean of each column, giving an overall picture of how the benchmarks changed. Proportional changes in the geomean reflect proportional changes in the benchmarks. For example, given n benchmarks, if sec/op for one of them increases by a factor of 2, then the sec/op geomean will increase by a factor of ⁿ√2.

I need more help

First off, do not worry if the benchmarks are failing. They are not tests. The intention is for them to be a tool for you to use during development.

If you would like a hand interpreting the results come chat with us in #serverless-agent in the internal DataDog slack or in #serverless in the public DataDog slack. We're happy to help!

Benchmark stats
goos: linux
goarch: amd64
pkg: github.com/DataDog/datadog-agent/pkg/serverless/daemon
cpu: AMD EPYC 7763 64-Core Processor                
                                      │ baseline/benchmark.log │        current/benchmark.log        │
                                      │         sec/op         │    sec/op     vs base               │
api-gateway-appsec.json                           92.72µ ± 13%   89.69µ ± 14%       ~ (p=0.123 n=10)
api-gateway-kong-appsec.json                      73.29µ ±  2%   67.55µ ±  1%  -7.84% (p=0.000 n=10)
api-gateway-kong.json                             69.58µ ±  2%   65.63µ ±  2%  -5.68% (p=0.000 n=10)
api-gateway-non-proxy-async.json                  108.8µ ±  2%   106.1µ ±  1%  -2.54% (p=0.000 n=10)
api-gateway-non-proxy.json                        107.5µ ±  2%   102.0µ ±  2%  -5.14% (p=0.000 n=10)
api-gateway-websocket-connect.json                70.02µ ±  1%   66.84µ ±  3%  -4.55% (p=0.000 n=10)
api-gateway-websocket-default.json                62.19µ ±  1%   60.25µ ±  2%  -3.11% (p=0.000 n=10)
api-gateway-websocket-disconnect.json             61.84µ ±  1%   58.73µ ±  2%  -5.02% (p=0.000 n=10)
api-gateway.json                                  114.6µ ±  3%   111.1µ ±  4%  -3.07% (p=0.019 n=10)
application-load-balancer.json                    61.96µ ±  2%   60.81µ ±  2%  -1.86% (p=0.001 n=10)
cloudfront.json                                   47.67µ ±  5%   44.69µ ±  4%  -6.26% (p=0.000 n=10)
cloudwatch-events.json                            38.78µ ±  1%   37.85µ ±  2%  -2.41% (p=0.009 n=10)
cloudwatch-logs.json                              62.63µ ±  2%   60.04µ ±  2%  -4.13% (p=0.000 n=10)
custom.json                                       32.45µ ±  1%   32.64µ ±  2%       ~ (p=0.481 n=10)
dynamodb.json                                     85.90µ ±  2%   89.75µ ±  3%  +4.48% (p=0.000 n=10)
empty.json                                        31.56µ ±  2%   31.24µ ±  2%       ~ (p=0.280 n=10)
eventbridge-custom.json                           48.13µ ±  4%   48.05µ ±  0%       ~ (p=0.436 n=10)
eventbridge-no-bus.json                           47.91µ ±  2%   46.92µ ±  1%  -2.07% (p=0.003 n=10)
eventbridge-no-timestamp.json                     47.39µ ±  2%   47.22µ ±  1%       ~ (p=0.529 n=10)
eventbridgesns.json                               61.69µ ±  2%   61.64µ ±  2%       ~ (p=0.579 n=10)
eventbridgesqs.json                               68.50µ ±  1%   68.27µ ±  1%       ~ (p=0.247 n=10)
http-api.json                                     68.86µ ±  1%   68.15µ ±  1%  -1.03% (p=0.001 n=10)
kinesis-batch.json                                68.44µ ±  1%   66.83µ ±  1%  -2.35% (p=0.000 n=10)
kinesis.json                                      54.40µ ±  1%   53.67µ ±  2%       ~ (p=0.063 n=10)
s3.json                                           58.40µ ±  2%   56.92µ ±  2%  -2.53% (p=0.000 n=10)
sns-batch.json                                    85.60µ ±  2%   84.40µ ±  2%  -1.40% (p=0.000 n=10)
sns.json                                          63.25µ ±  1%   64.18µ ±  1%       ~ (p=0.063 n=10)
snssqs.json                                       108.5µ ±  1%   109.1µ ±  1%       ~ (p=0.353 n=10)
snssqs_no_dd_context.json                         98.06µ ±  1%   98.25µ ±  3%       ~ (p=0.579 n=10)
sqs-aws-header.json                               54.75µ ±  3%   54.27µ ±  2%       ~ (p=0.315 n=10)
sqs-batch.json                                    89.29µ ±  1%   88.18µ ±  2%  -1.25% (p=0.002 n=10)
sqs.json                                          65.65µ ±  1%   65.47µ ±  2%       ~ (p=0.739 n=10)
sqs_no_dd_context.json                            60.30µ ±  2%   60.15µ ±  1%       ~ (p=0.436 n=10)
stepfunction.json                                 43.27µ ±  1%   42.47µ ±  1%  -1.85% (p=0.023 n=10)
geomean                                           64.63µ         63.38µ        -1.93%

                                      │ baseline/benchmark.log │        current/benchmark.log        │
                                      │          B/op          │     B/op      vs base               │
api-gateway-appsec.json                           37.32Ki ± 0%   37.33Ki ± 0%       ~ (p=0.617 n=10)
api-gateway-kong-appsec.json                      26.90Ki ± 0%   26.90Ki ± 0%       ~ (p=0.320 n=10)
api-gateway-kong.json                             24.37Ki ± 0%   24.37Ki ± 0%       ~ (p=0.838 n=10)
api-gateway-non-proxy-async.json                  47.99Ki ± 0%   48.00Ki ± 0%       ~ (p=0.615 n=10)
api-gateway-non-proxy.json                        47.18Ki ± 0%   47.17Ki ± 0%  -0.01% (p=0.045 n=10)
api-gateway-websocket-connect.json                25.37Ki ± 0%   25.37Ki ± 0%       ~ (p=0.781 n=10)
api-gateway-websocket-default.json                21.26Ki ± 0%   21.26Ki ± 0%       ~ (p=0.982 n=10)
api-gateway-websocket-disconnect.json             21.02Ki ± 0%   21.02Ki ± 0%       ~ (p=0.470 n=10)
api-gateway.json                                  49.27Ki ± 0%   49.27Ki ± 0%       ~ (p=0.795 n=10)
application-load-balancer.json                    23.39Ki ± 0%   23.39Ki ± 0%       ~ (p=0.154 n=10)
cloudfront.json                                   17.45Ki ± 0%   17.45Ki ± 0%  -0.01% (p=0.001 n=10)
cloudwatch-events.json                            11.52Ki ± 0%   11.52Ki ± 0%  -0.02% (p=0.000 n=10)
cloudwatch-logs.json                              53.05Ki ± 0%   53.05Ki ± 0%  -0.00% (p=0.043 n=10)
custom.json                                       9.545Ki ± 0%   9.544Ki ± 0%       ~ (p=0.115 n=10)
dynamodb.json                                     40.33Ki ± 0%   40.33Ki ± 0%       ~ (p=0.420 n=10)
empty.json                                        9.082Ki ± 0%   9.082Ki ± 0%       ~ (p=0.518 n=10)
eventbridge-custom.json                           14.67Ki ± 0%   14.67Ki ± 0%       ~ (p=0.939 n=10)
eventbridge-no-bus.json                           13.63Ki ± 0%   13.63Ki ± 0%       ~ (p=0.693 n=10)
eventbridge-no-timestamp.json                     13.63Ki ± 0%   13.63Ki ± 0%       ~ (p=0.087 n=10)
eventbridgesns.json                               20.46Ki ± 0%   20.46Ki ± 0%  +0.01% (p=0.027 n=10)
eventbridgesqs.json                               24.59Ki ± 0%   24.59Ki ± 0%       ~ (p=0.097 n=10)
http-api.json                                     23.31Ki ± 0%   23.31Ki ± 0%       ~ (p=0.467 n=10)
kinesis-batch.json                                26.53Ki ± 0%   26.53Ki ± 0%       ~ (p=0.693 n=10)
kinesis.json                                      17.41Ki ± 0%   17.41Ki ± 0%       ~ (p=0.230 n=10)
s3.json                                           19.90Ki ± 0%   19.90Ki ± 0%       ~ (p=0.258 n=10)
sns-batch.json                                    39.07Ki ± 0%   39.07Ki ± 0%  -0.00% (p=0.037 n=10)
sns.json                                          24.49Ki ± 0%   24.49Ki ± 0%       ~ (p=0.641 n=10)
snssqs.json                                       52.74Ki ± 0%   52.74Ki ± 0%       ~ (p=0.565 n=10)
snssqs_no_dd_context.json                         46.50Ki ± 0%   46.50Ki ± 0%       ~ (p=0.911 n=10)
sqs-aws-header.json                               18.78Ki ± 0%   18.78Ki ± 0%       ~ (p=0.898 n=10)
sqs-batch.json                                    41.26Ki ± 0%   41.26Ki ± 0%       ~ (p=0.896 n=10)
sqs.json                                          25.39Ki ± 0%   25.39Ki ± 0%       ~ (p=0.309 n=10)
sqs_no_dd_context.json                            21.04Ki ± 0%   21.04Ki ± 0%       ~ (p=0.420 n=10)
stepfunction.json                                 13.54Ki ± 0%   13.54Ki ± 0%       ~ (p=0.258 n=10)
geomean                                           24.15Ki        24.15Ki       -0.00%

                                      │ baseline/benchmark.log │        current/benchmark.log        │
                                      │       allocs/op        │ allocs/op   vs base                 │
api-gateway-appsec.json                             630.0 ± 0%   630.0 ± 0%       ~ (p=1.000 n=10) ¹
api-gateway-kong-appsec.json                        488.0 ± 0%   488.0 ± 0%       ~ (p=1.000 n=10) ¹
api-gateway-kong.json                               466.0 ± 0%   466.0 ± 0%       ~ (p=1.000 n=10) ¹
api-gateway-non-proxy-async.json                    723.0 ± 0%   723.0 ± 0%       ~ (p=1.000 n=10) ¹
api-gateway-non-proxy.json                          713.0 ± 0%   713.0 ± 0%       ~ (p=1.000 n=10) ¹
api-gateway-websocket-connect.json                  451.0 ± 0%   451.0 ± 0%       ~ (p=1.000 n=10) ¹
api-gateway-websocket-default.json                  376.0 ± 0%   376.0 ± 0%       ~ (p=1.000 n=10) ¹
api-gateway-websocket-disconnect.json               366.0 ± 0%   366.0 ± 0%       ~ (p=1.000 n=10) ¹
api-gateway.json                                    785.0 ± 0%   785.0 ± 0%       ~ (p=1.000 n=10)
application-load-balancer.json                      351.0 ± 0%   351.0 ± 0%       ~ (p=1.000 n=10) ¹
cloudfront.json                                     281.0 ± 0%   281.0 ± 0%       ~ (p=1.000 n=10) ¹
cloudwatch-events.json                              218.0 ± 0%   218.0 ± 0%       ~ (p=1.000 n=10) ¹
cloudwatch-logs.json                                211.0 ± 0%   211.0 ± 0%       ~ (p=1.000 n=10) ¹
custom.json                                         166.0 ± 0%   166.0 ± 0%       ~ (p=1.000 n=10) ¹
dynamodb.json                                       582.0 ± 0%   582.0 ± 0%       ~ (p=1.000 n=10) ¹
empty.json                                          157.0 ± 0%   157.0 ± 0%       ~ (p=1.000 n=10) ¹
eventbridge-custom.json                             261.0 ± 0%   261.0 ± 0%       ~ (p=1.000 n=10) ¹
eventbridge-no-bus.json                             252.0 ± 0%   252.0 ± 0%       ~ (p=1.000 n=10) ¹
eventbridge-no-timestamp.json                       252.0 ± 0%   252.0 ± 0%       ~ (p=1.000 n=10) ¹
eventbridgesns.json                                 318.0 ± 0%   318.0 ± 0%       ~ (p=1.000 n=10) ¹
eventbridgesqs.json                                 358.0 ± 0%   358.0 ± 0%       ~ (p=1.000 n=10) ¹
http-api.json                                       424.0 ± 0%   424.0 ± 0%       ~ (p=1.000 n=10) ¹
kinesis-batch.json                                  383.0 ± 0%   383.0 ± 0%       ~ (p=1.000 n=10) ¹
kinesis.json                                        279.0 ± 0%   279.0 ± 0%       ~ (p=1.000 n=10) ¹
s3.json                                             351.0 ± 0%   351.0 ± 0%       ~ (p=1.000 n=10) ¹
sns-batch.json                                      465.0 ± 0%   465.0 ± 0%       ~ (p=1.000 n=10) ¹
sns.json                                            336.0 ± 0%   336.0 ± 0%       ~ (p=1.000 n=10) ¹
snssqs.json                                         460.0 ± 0%   460.0 ± 0%       ~ (p=1.000 n=10) ¹
snssqs_no_dd_context.json                           420.0 ± 0%   420.0 ± 0%       ~ (p=1.000 n=10) ¹
sqs-aws-header.json                                 276.0 ± 0%   276.0 ± 0%       ~ (p=1.000 n=10) ¹
sqs-batch.json                                      500.0 ± 0%   500.0 ± 0%       ~ (p=1.000 n=10) ¹
sqs.json                                            351.0 ± 0%   351.0 ± 0%       ~ (p=1.000 n=10) ¹
sqs_no_dd_context.json                              337.0 ± 0%   337.0 ± 0%       ~ (p=1.000 n=10) ¹
stepfunction.json                                   226.0 ± 0%   226.0 ± 0%       ~ (p=1.000 n=10) ¹
geomean                                             360.1        360.1       +0.00%
¹ all samples are equal

@agent-platform-auto-pr
Copy link
Contributor

Uncompressed package size comparison

Comparison with ancestor 48763aacf6fe5a19d9d4c8c29be6cd9872b1fb65

Diff per package
package diff status size ancestor threshold
datadog-dogstatsd-amd64-deb 0.00MB 78.59MB 78.59MB 10.00MB
datadog-dogstatsd-x86_64-rpm 0.00MB 78.67MB 78.67MB 10.00MB
datadog-dogstatsd-x86_64-suse 0.00MB 78.67MB 78.67MB 10.00MB
datadog-dogstatsd-arm64-deb 0.00MB 55.79MB 55.79MB 10.00MB
datadog-heroku-agent-amd64-deb 0.00MB 505.06MB 505.06MB 70.00MB
datadog-iot-agent-amd64-deb 0.00MB 113.31MB 113.31MB 10.00MB
datadog-iot-agent-x86_64-rpm 0.00MB 113.38MB 113.38MB 10.00MB
datadog-iot-agent-x86_64-suse 0.00MB 113.38MB 113.38MB 10.00MB
datadog-iot-agent-arm64-deb 0.00MB 108.78MB 108.78MB 10.00MB
datadog-iot-agent-aarch64-rpm 0.00MB 108.85MB 108.85MB 10.00MB
datadog-agent-amd64-deb -0.00MB 1187.77MB 1187.77MB 140.00MB
datadog-agent-x86_64-rpm -0.00MB 1197.00MB 1197.01MB 140.00MB
datadog-agent-x86_64-suse -0.00MB 1197.00MB 1197.01MB 140.00MB
datadog-agent-aarch64-rpm -0.02MB 942.99MB 943.00MB 140.00MB
datadog-agent-arm64-deb -0.02MB 933.77MB 933.79MB 140.00MB

Decision

✅ Passed

@agent-platform-auto-pr
Copy link
Contributor

Test changes on VM

Use this command from test-infra-definitions to manually test this PR changes on a VM:

inv aws.create-vm --pipeline-id=51426319 --os-family=ubuntu

Note: This applies to commit 1aede34

Copy link

Regression Detector

Regression Detector Results

Metrics dashboard
Target profiles
Run ID: 6e74838e-c051-4190-924a-a958f0bcab92

Baseline: 48763aa
Comparison: 1aede34
Diff

Optimization Goals: ✅ No significant changes detected

Fine details of change detection per experiment

perf experiment goal Δ mean % Δ mean % CI trials links
quality_gate_idle_all_features memory utilization +0.90 [+0.79, +1.01] 1 Logs bounds checks dashboard
tcp_syslog_to_blackhole ingress throughput +0.59 [+0.53, +0.65] 1 Logs
file_to_blackhole_1000ms_latency egress throughput +0.36 [-0.42, +1.14] 1 Logs
file_to_blackhole_0ms_latency_http1 egress throughput +0.09 [-0.75, +0.93] 1 Logs
file_to_blackhole_0ms_latency egress throughput +0.07 [-0.80, +0.93] 1 Logs
file_to_blackhole_500ms_latency egress throughput +0.03 [-0.75, +0.81] 1 Logs
file_to_blackhole_100ms_latency egress throughput +0.02 [-0.74, +0.78] 1 Logs
file_to_blackhole_300ms_latency egress throughput +0.01 [-0.61, +0.64] 1 Logs
tcp_dd_logs_filter_exclude ingress throughput -0.00 [-0.02, +0.02] 1 Logs
uds_dogstatsd_to_api ingress throughput -0.03 [-0.13, +0.06] 1 Logs
file_to_blackhole_0ms_latency_http2 egress throughput -0.10 [-0.97, +0.78] 1 Logs
uds_dogstatsd_to_api_cpu % cpu utilization -0.11 [-0.83, +0.61] 1 Logs
file_tree memory utilization -0.16 [-0.30, -0.03] 1 Logs
otel_to_otel_logs ingress throughput -0.24 [-0.96, +0.47] 1 Logs
quality_gate_idle memory utilization -0.34 [-0.38, -0.29] 1 Logs bounds checks dashboard
file_to_blackhole_1000ms_latency_linear_load egress throughput -0.35 [-0.82, +0.12] 1 Logs
quality_gate_logs % cpu utilization -4.41 [-7.29, -1.53] 1 Logs

Bounds Checks: ❌ Failed

perf experiment bounds_check_name replicates_passed links
file_to_blackhole_100ms_latency lost_bytes 9/10
file_to_blackhole_0ms_latency lost_bytes 10/10
file_to_blackhole_0ms_latency memory_usage 10/10
file_to_blackhole_0ms_latency_http1 lost_bytes 10/10
file_to_blackhole_0ms_latency_http1 memory_usage 10/10
file_to_blackhole_0ms_latency_http2 lost_bytes 10/10
file_to_blackhole_0ms_latency_http2 memory_usage 10/10
file_to_blackhole_1000ms_latency memory_usage 10/10
file_to_blackhole_1000ms_latency_linear_load memory_usage 10/10
file_to_blackhole_100ms_latency memory_usage 10/10
file_to_blackhole_300ms_latency lost_bytes 10/10
file_to_blackhole_300ms_latency memory_usage 10/10
file_to_blackhole_500ms_latency lost_bytes 10/10
file_to_blackhole_500ms_latency memory_usage 10/10
quality_gate_idle memory_usage 10/10 bounds checks dashboard
quality_gate_idle_all_features memory_usage 10/10 bounds checks dashboard
quality_gate_logs lost_bytes 10/10
quality_gate_logs memory_usage 10/10

Explanation

Confidence level: 90.00%
Effect size tolerance: |Δ mean %| ≥ 5.00%

Performance changes are noted in the perf column of each table:

  • ✅ = significantly better comparison variant performance
  • ❌ = significantly worse comparison variant performance
  • ➖ = no significant change in performance

A regression test is an A/B test of target performance in a repeatable rig, where "performance" is measured as "comparison variant minus baseline variant" for an optimization goal (e.g., ingress throughput). Due to intrinsic variability in measuring that goal, we can only estimate its mean value for each experiment; we report uncertainty in that value as a 90.00% confidence interval denoted "Δ mean % CI".

For each experiment, we decide whether a change in performance is a "regression" -- a change worth investigating further -- if all of the following criteria are true:

  1. Its estimated |Δ mean %| ≥ 5.00%, indicating the change is big enough to merit a closer look.

  2. Its 90.00% confidence interval "Δ mean % CI" does not contain zero, indicating that if our statistical model is accurate, there is at least a 90.00% chance there is a difference in performance between baseline and comparison variants.

  3. Its configuration does not mark it "erratic".

CI Pass/Fail Decision

Passed. All Quality Gates passed.

  • quality_gate_idle_all_features, bounds check memory_usage: 10/10 replicas passed. Gate passed.
  • quality_gate_idle, bounds check memory_usage: 10/10 replicas passed. Gate passed.
  • quality_gate_logs, bounds check memory_usage: 10/10 replicas passed. Gate passed.
  • quality_gate_logs, bounds check lost_bytes: 10/10 replicas passed. Gate passed.

@duncanista
Copy link
Contributor

/merge

@dd-devflow
Copy link

dd-devflow bot commented Dec 18, 2024

Devflow running: /merge

View all feedbacks in Devflow UI.


2024-12-18 15:47:09 UTC ℹ️ MergeQueue: pull request added to the queue

The median merge time in main is 27m.


2024-12-18 17:16:04 UTC ℹ️ MergeQueue: This merge request was merged

@dd-mergequeue dd-mergequeue bot merged commit 623e2dc into main Dec 18, 2024
234 checks passed
@dd-mergequeue dd-mergequeue bot deleted the romain.marcadier/http-proxy-error-log branch December 18, 2024 17:16
@github-actions github-actions bot added this to the 7.62.0 milestone Dec 18, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
changelog/no-changelog qa/done QA done before merge and regressions are covered by tests short review PR is simple enough to be reviewed quickly
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants