defer node setup
[scpubgit/Object-Remote.git] / lib / Object / Remote / Role / Connector.pm
index 0669a9d..16f0d52 100644 (file)
@@ -9,10 +9,6 @@ sub connect {
   my $self = shift;
   my %args;
   @args{qw(send_to_fh receive_from_fh child_pid)} = $self->_open2_for(@_);
-  my $line = readline($args{receive_from_fh});
-  unless ($line eq "Shere\n") {
-    die "New remote container did not send Shere - got ${line}";
-  }
   return use_module('Object::Remote::Connection')->new(\%args);
 }