defect 3376 - need to load XCATSITEVAL global in upd listener process

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@15203 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
mellor 2013-02-18 20:30:37 +00:00
parent 9154b2edc9
commit daf319a402

View File

@ -548,7 +548,11 @@ sleep 0.05;
xCAT::MsgUtils->message("S","xcatd: Something absolutely ludicrous happpened, xCAT developers think this message is impossible to see, post if you see it, fork bomb averted");
exit(1);
}
until ($select->can_read(5)) { if ($quit) { last; }; yield; } #Wait for data
until ($select->can_read(5)) { #Wait for data
if ($quit) { last; };
populate_site_hash();
yield;
}
while ($select->can_read(0)) { #Pull all buffer data that can be pulled
$part = $socket->recv($data,1500);
($sport,$client) = sockaddr_in($part);