diff --git a/lxd/instance/drivers/driver_lxc.go b/lxd/instance/drivers/driver_lxc.go index 276c787fcace..8f2c436cdd50 100644 --- a/lxd/instance/drivers/driver_lxc.go +++ b/lxd/instance/drivers/driver_lxc.go @@ -5426,11 +5426,6 @@ func (d *lxc) MigrateSend(args instance.MigrateSendArgs) error { // Setup rsync options (used for CRIU state transfers). rsyncBwlimit := pool.Driver().Config()["rsync.bwlimit"] rsyncFeatures := respHeader.GetRsyncFeaturesSlice() - if !shared.ValueInSlice("bidirectional", rsyncFeatures) { - // If no bi-directional support, assume LXD 3.7 level. - // NOTE: Do NOT extend this list of arguments. - rsyncFeatures = []string{"xattrs", "delete", "compress"} - } if respHeader.Criu == nil { return fmt.Errorf("Got no CRIU socket type for live migration")