1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-12-01 22:30:09 +02:00

Move modules in Protocol directory in subdirectories.

This commit is contained in:
David Steele
2017-05-15 11:12:14 -04:00
parent 33c87b2a1c
commit 2a23157bf2
70 changed files with 3234 additions and 3224 deletions

View File

@@ -19,7 +19,7 @@ use Symbol 'gensym';
use pgBackRest::Common::Log;
use pgBackRest::Common::Wait;
use pgBackRest::Protocol::IO::ProcessIO;
use pgBackRest::Protocol::Common::Io::Process;
####################################################################################################################################
# new
@@ -99,7 +99,7 @@ sub begin
$self->{pId} = open3(undef, $self->{hOut}, $self->{hError}, $self->{strCommand});
# Create select objects
$self->{oIO} = new pgBackRest::Protocol::IO::ProcessIO($self->{hOut}, undef, $self->{hError}, undef, undef, 30, 65536);
$self->{oIO} = new pgBackRest::Protocol::Common::Io::Process($self->{hOut}, undef, $self->{hError}, undef, undef, 30, 65536);
if (!defined($self->{hError}))
{