From 77039fecb994c7bb1f022917fc69c4914f28f747 Mon Sep 17 00:00:00 2001 From: Stefan Wrobel Date: Wed, 14 Jan 2026 09:08:42 -0800 Subject: [PATCH] Remove trailing space from message --- lib/rack/timeout/core.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/rack/timeout/core.rb b/lib/rack/timeout/core.rb index 17d18b5..22c4722 100644 --- a/lib/rack/timeout/core.rb +++ b/lib/rack/timeout/core.rb @@ -134,7 +134,7 @@ def call(env) message = +"Request " message << "waited #{info.ms(:wait)}, then " if info.wait - message << "ran for longer than #{info.ms(:timeout)} " + message << "ran for longer than #{info.ms(:timeout)}" if term_on_timeout Thread.main['RACK_TIMEOUT_COUNT'] ||= 0 Thread.main['RACK_TIMEOUT_COUNT'] += 1