Compare commits

...

2 Commits

Author SHA1 Message Date
Moritz Lenz
60948abfe0 Fix typo (#298)
* Updated readme

* Fix typo in comment

Co-authored-by: Carlos Salguero <carlos.salguero@percona.com>
2022-09-27 23:42:42 +03:00
Sveta Smirnova
36914aedb8 Fix for PT-1799 (#466) 2022-09-14 00:47:46 +03:00
2 changed files with 2 additions and 2 deletions

View File

@@ -4293,7 +4293,7 @@ sub recurse_to_slaves {
my $slave_dsn = $dsn; my $slave_dsn = $dsn;
if ($slave_user) { if ($slave_user) {
$slave_dsn->{u} = $slave_user; $slave_dsn->{u} = $slave_user;
PTDEBUG && _d("Using slave user $slave_user on ".$slave_dsn->{h}.":".$slave_dsn->{P}); PTDEBUG && _d("Using slave user $slave_user on ".$slave_dsn->{h}.":".($slave_dsn->{P}?$slave_dsn->{P}:""));
} }
if ($slave_password) { if ($slave_password) {
$slave_dsn->{p} = $slave_password; $slave_dsn->{p} = $slave_password;

View File

@@ -9951,7 +9951,7 @@ sub main {
$o->save_error("--conflict-comparison $cc requires --conflict-value") $o->save_error("--conflict-comparison $cc requires --conflict-value")
} }
# Override --algorithms becuase only TableSyncChunk works with # Override --algorithms because only TableSyncChunk works with
# bidirectional syncing. # bidirectional syncing.
$o->set('algorithms', 'Chunk'); $o->set('algorithms', 'Chunk');
$o->set('buffer-to-client', 0); $o->set('buffer-to-client', 0);