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
This commit is contained in:
Jingwei.Zhang 2022-04-08 09:54:14 +08:00
parent 74df8da69e
commit feb7bb1af1

View File

@ -25,7 +25,7 @@ const actionConfigs = {
}, },
], ],
}, },
batchActions: [Delete], batchActions: [],
primaryActions: [Create], primaryActions: [Create],
}; };
@ -33,7 +33,7 @@ const actionConfigsAdmin = {
rowActions: { rowActions: {
firstAction: Delete, firstAction: Delete,
}, },
batchActions: [Delete], batchActions: [],
primaryActions: [], primaryActions: [],
}; };