Is the file extension .patch the problem? My sent box shows the attachment. I'm reattaching it as a .txt file.
Thanks Thiru -----Original Message----- From: Ryan King [mailto:r...@twitter.com] Sent: Thursday, September 09, 2010 1:18 AM To: dev@avro.apache.org Cc: Jeff Hodges Subject: Re: [RESULT] [VOTE] Avro release 1.4.0 (rc4) I don't see your attachment. -ryan On Wed, Sep 8, 2010 at 11:49 AM, Thiruvalluvan M. G. <thiru...@yahoo.com> wrote: > +0 > > On my Ubuntu Lucid Lynx machine, all but interop tests pass. The ruby server > takes up to 15 seconds to start. The script waits just for 1 second. All > other servers start within 1 second. The attached patch fixes the problem > for me. > > I wouldn't block the release since nobody else seems to see the problem. > > I'll create a JIRA and have the issue addressed. > > Thanks > > Thiru > > -----Original Message----- > From: Doug Cutting [mailto:cutt...@apache.org] > Sent: Wednesday, September 08, 2010 11:57 PM > To: dev@avro.apache.org > Subject: [RESULT] [VOTE] Avro release 1.4.0 (rc4) > > +1 from me. Tests pass, checksums and signatures are valid. > > With that, we have 5 +1 votes, 3 binding, and no -1 votes. > > I'll push this out to the mirrors and announce it. > > Doug > > On 09/02/2010 06:50 PM, Doug Cutting wrote: >> I have created a fifth (!) candidate build for Avro release 1.4.0. >> >> Changes are listed at: >> >> http://tinyurl.com/3yp6zrm >> >> Please download, test, and vote by 6 September. >> >> http://people.apache.org/~cutting/avro-1.4.0-rc4/ >> >> Thanks, >> >> Doug >
Index: share/test/interop/bin/test_rpc_interop.sh =================================================================== --- share/test/interop/bin/test_rpc_interop.sh (revision 995176) +++ share/test/interop/bin/test_rpc_interop.sh (working copy) @@ -58,9 +58,20 @@ echo TEST: $c for client in "${clien...@]}" do + rm -rf $portfile $server http://127.0.0.1:0/ $proto $msg -file $c/response.avro \ > $portfile & - sleep 1 # wait for server to start + count=0 + while [ ! -s $portfile ] + do + sleep 1 + if [ $count -gt 60 ] + then + echo $server did not start. + exit 1 + fi + count=`expr $count + 1` + done read ignore port < $portfile $client http://127.0.0.1:$port $proto $msg -file $c/request.avro wait