From feb7bb1af16fbd376c8ef564aa0b124aa2d7de07 Mon Sep 17 00:00:00 2001 From: "Jingwei.Zhang" Date: Fri, 8 Apr 2022 09:54:14 +0800 Subject: [PATCH] fix: Remove batch delete port forwarding Concurrent deletion will cause an error in neutron updating the routerId attribute of the floating IP, so remove batch delete port forwarding action. Change-Id: I18687b80f9a7e239a5ae23d84ae2169ad8491cf0 --- .../FloatingIp/Detail/PortForwarding/actions/index.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/network/containers/FloatingIp/Detail/PortForwarding/actions/index.jsx b/src/pages/network/containers/FloatingIp/Detail/PortForwarding/actions/index.jsx index dde6171a..b2014c00 100644 --- a/src/pages/network/containers/FloatingIp/Detail/PortForwarding/actions/index.jsx +++ b/src/pages/network/containers/FloatingIp/Detail/PortForwarding/actions/index.jsx @@ -25,7 +25,7 @@ const actionConfigs = { }, ], }, - batchActions: [Delete], + batchActions: [], primaryActions: [Create], }; @@ -33,7 +33,7 @@ const actionConfigsAdmin = { rowActions: { firstAction: Delete, }, - batchActions: [Delete], + batchActions: [], primaryActions: [], };