diff --git a/src/ContainerCheckpointModal.jsx b/src/ContainerCheckpointModal.jsx index 6711edda5..8dadad08c 100644 --- a/src/ContainerCheckpointModal.jsx +++ b/src/ContainerCheckpointModal.jsx @@ -13,7 +13,6 @@ const ContainerCheckpointModal = ({ containerWillCheckpoint, onAddNotification } const [keep, setKeep] = useState(false); const [leaveRunning, setLeaveRunning] = useState(false); const [tcpEstablished, setTcpEstablished] = useState(false); - const [ignoreRootFS, setIgnoreRootFS] = useState(false); const handleCheckpointContainer = () => { setProgress(true); @@ -21,7 +20,6 @@ const ContainerCheckpointModal = ({ containerWillCheckpoint, onAddNotification } keep, leaveRunning, tcpEstablished, - ignoreRootFS, }) .catch(ex => { const error = cockpit.format(_("Failed to checkpoint container $0"), containerWillCheckpoint.Names); @@ -59,9 +57,6 @@ const ContainerCheckpointModal = ({ containerWillCheckpoint, onAddNotification } - ); diff --git a/test/check-application b/test/check-application index 153f7edb5..8d07803f7 100755 --- a/test/check-application +++ b/test/check-application @@ -1175,7 +1175,6 @@ class TestApplication(testlib.MachineCase): self.performContainerAction("swamped-crate", "Checkpoint") b.set_checked('.pf-c-modal-box input#checkpoint-dialog-keep', True) b.set_checked('.pf-c-modal-box input#checkpoint-dialog-tcpEstablished', True) - b.set_checked('.pf-c-modal-box input#checkpoint-dialog-ignoreRootFS', True) b.click('.pf-c-modal-box button:contains(Checkpoint)') with b.wait_timeout(300):