Skip to content

Commit

Permalink
Merge pull request #14192 from mlschroe/master
Browse files Browse the repository at this point in the history
[backend] also call trigger_auto_deep_checks if a remote config changes
  • Loading branch information
mlschroe committed Apr 20, 2023
2 parents f9c0782 + c6cb928 commit b781a0c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/backend/BSSched/Remote.pm
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ use Digest::MD5 ();
use BSUtil;
use BSSolv;
use BSRPC;
use BSHTTP;
use BSSched::RPC;
use BSConfiguration;
use BSXML;
Expand Down Expand Up @@ -313,6 +314,7 @@ sub remotemap2remoteprojs {
$gctx->{'remoteprojs_changed'}->{$projid} = 1 if $oproj;
next;
}
BSSched::ProjPacks::trigger_auto_deep_checks($gctx, $projid, $oproj, $proj) if $oproj && defined($oproj->{'config'}) && defined($proj->{'config'}) && $oproj->{'config'} ne $proj->{'config'};
undef $oproj if $oproj && ($oproj->{'remoteurl'} ne $proj->{'remoteurl'} || $oproj->{'remoteproject'} ne $proj->{'remoteproject'});
my $c = $proj->{'config'};
$c = $oproj->{'config'} if !defined($c) && $oproj;
Expand Down

0 comments on commit b781a0c

Please sign in to comment.