From 0c9c847d3350c5cefbdc8bbc28918768271e4a7d Mon Sep 17 00:00:00 2001 From: Dmitry Volyntsev Date: Wed, 9 Apr 2025 17:19:37 -0700 Subject: [PATCH] Fixed typo in stream event handler debug message. --- nginx/ngx_stream_js_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx/ngx_stream_js_module.c b/nginx/ngx_stream_js_module.c index 44c7af17..7620f2e0 100644 --- a/nginx/ngx_stream_js_module.c +++ b/nginx/ngx_stream_js_module.c @@ -1914,7 +1914,7 @@ static void ngx_stream_js_event_finalize(ngx_stream_session_t *s, ngx_int_t rc) { ngx_log_debug1(NGX_LOG_DEBUG_STREAM, s->connection->log, 0, - "http js event finalize rc: %i", rc); + "stream js event finalize rc: %i", rc); if (rc == NGX_ERROR) { if (s->health_check) { -- 2.47.3