From 8cad47b29ed712ed46d407428d3e6b3f98ff7c94 Mon Sep 17 00:00:00 2001 From: ssongliu <73214554+ssongliu@users.noreply.github.com> Date: Tue, 22 Oct 2024 15:20:28 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BF=AE=E6=94=B9=E5=AE=B9=E5=99=A8?= =?UTF-8?q?=E6=93=8D=E4=BD=9C=E8=B6=85=E6=97=B6=E6=97=B6=E9=97=B4=20(#6798?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Refs #6747 --- frontend/src/api/modules/container.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/api/modules/container.ts b/frontend/src/api/modules/container.ts index c84e35cb9..9048b5abe 100644 --- a/frontend/src/api/modules/container.ts +++ b/frontend/src/api/modules/container.ts @@ -43,7 +43,7 @@ export const containerRename = (params: Container.ContainerRename) => { return http.post(`/containers/rename`, params); }; export const containerOperator = (params: Container.ContainerOperate) => { - return http.post(`/containers/operate`, params); + return http.post(`/containers/operate`, params, TimeoutEnum.T_60S); }; export const containerPrune = (params: Container.ContainerPrune) => { return http.post(`/containers/prune`, params);