revert connection targets min_count to 3

This commit is contained in:
Birte Kristina Friesel 2024-07-26 18:35:51 +02:00
parent be335cef07
commit df21c20c6e
No known key found for this signature in database
GPG key ID: B63118F7196EA660

View file

@ -1764,7 +1764,7 @@ sub get_connection_targets {
my $threshold = $opt{threshold} my $threshold = $opt{threshold}
// DateTime->now( time_zone => 'Europe/Berlin' )->subtract( months => 4 ); // DateTime->now( time_zone => 'Europe/Berlin' )->subtract( months => 4 );
my $db = $opt{db} //= $self->{pg}->db; my $db = $opt{db} //= $self->{pg}->db;
my $min_count = $opt{min_count} // 1; my $min_count = $opt{min_count} // 3;
my $dest_id = $opt{eva}; my $dest_id = $opt{eva};
if ( $opt{destination_name} ) { if ( $opt{destination_name} ) {