From 986bac3ae855d927516e5b69a47a44ea0e3e988f Mon Sep 17 00:00:00 2001 From: Michael Ruoss Date: Thu, 21 May 2026 11:34:22 +0200 Subject: [PATCH] set the pool_imeout to 10s for kubereq --- lib/livebook/k8s_api.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/livebook/k8s_api.ex b/lib/livebook/k8s_api.ex index c1b03714106..bf464db532c 100644 --- a/lib/livebook/k8s_api.ex +++ b/lib/livebook/k8s_api.ex @@ -313,6 +313,6 @@ defmodule Livebook.K8sAPI do end defp build_req() do - Req.new() |> Livebook.Utils.req_attach_defaults() + Req.new(pool_timeout: 10_000) |> Livebook.Utils.req_attach_defaults() end end