---
 PVE/ReplicationState.pm | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/PVE/ReplicationState.pm b/PVE/ReplicationState.pm
index 0851195..60e009b 100644
--- a/PVE/ReplicationState.pm
+++ b/PVE/ReplicationState.pm
@@ -254,8 +254,16 @@ sub job_status {
 
        my $target = $jobcfg->{target};
        if (!$jobcfg->{remove_job}) {
-           # never sync to local node
-           next if $target eq $local_node;
+           # check if vm was stolen (swapped source target)
+           if ($target eq $local_node) {
+               my $source = $jobcfg->{source};
+               if (defined($source) && $source ne $target) {
+                   $jobcfg = 
PVE::ReplicationConfig::swap_source_target($jobid);
+               } else {
+                   # never sync to local node
+                   next;
+               }
+           }
 
            next if !$get_disabled && $jobcfg->{disable};
        }
-- 
2.11.0


_______________________________________________
pve-devel mailing list
pve-devel@pve.proxmox.com
https://pve.proxmox.com/cgi-bin/mailman/listinfo/pve-devel

Reply via email to