From 82e1360c9067354af7728208c994b600dd875e6d Mon Sep 17 00:00:00 2001 From: fesily Date: Fri, 15 Jul 2022 11:30:24 +0800 Subject: [PATCH] bugfix:tarballs add privileged agent threadpool --- util/mirror-tarballs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/util/mirror-tarballs b/util/mirror-tarballs index 20402cf..2f35b3a 100755 --- a/util/mirror-tarballs +++ b/util/mirror-tarballs @@ -133,6 +133,13 @@ if [ "$answer" = "Y" ]; then echo fi +answer=`$root/util/ver-ge "$main_ver" 1.21.4` +if [ "$answer" = "Y" ]; then + echo "$info_txt applying the privileged_agent_process_thread_pool patch" + patch -p1 < $root/patches/nginx-$main_ver-privileged_agent_process_thread_pool.patch || exit 1 + echo +fi + answer=`$root/util/ver-ge "$main_ver" 1.11.2` if [ "$answer" = "Y" ]; then echo "$info_txt applying the single-process-graceful-exit patch"