From 88ff9eee0f6c123a346c92301e7afe5e018342f0 Mon Sep 17 00:00:00 2001 From: Patrick Huang Date: Thu, 5 Sep 2024 17:57:38 +0800 Subject: [PATCH] fix check --- src/frontend/src/session.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/src/session.rs b/src/frontend/src/session.rs index d377a6fc758d..a1150798951c 100644 --- a/src/frontend/src/session.rs +++ b/src/frontend/src/session.rs @@ -1211,8 +1211,8 @@ impl SessionImpl { }; format!( "\n- {}\n- {}\n- {}\n- {}\n- {}\n{}", - format!("Actor count per parallelism exceeds the {} limit.", limit_type), - format!("Depending on your workload, this may overload the cluster and cause performance/stability issues. {}", action), + format_args!("Actor count per parallelism exceeds the {} limit.", limit_type), + format_args!("Depending on your workload, this may overload the cluster and cause performance/stability issues. {}", action), "Contact us via slack or https://risingwave.com/contact-us/ for further enquiry.", "You can bypass this check via SQL `SET bypass_cluster_limits TO true`.", "You can check actor count distribution via SQL `SELECT * FROM rw_worker_actor_count`.",