I would just replace the beta3 - that's why we're waiting to announce it. On this note, maybe it'd be nice to put release candidates in a different folder on the server, so that people couldn't grab a file before it's ready. Heck, you could just move it to the "nightly" folder till we decide we like it, then move it to the "release" folder when we're ready.
-Mike > -----Original Message----- > From: Boutcher, James K. [mailto:[EMAIL PROTECTED]] > Sent: Thursday, February 21, 2002 9:49 AM > To: JMeter Developers List > Subject: RE: view results tree visualizer > > > I'll rebuild tonight.. Should I keep it at beta3 or run to > beta4 and remove all mentions of beta3 from everywhere??? > > > -----Original Message----- > > From: Stover, Michael [mailto:[EMAIL PROTECTED]] > > Sent: Thursday, February 21, 2002 8:26 AM > > To: 'JMeter Developers List' > > Subject: RE: view results tree visualizer > > > > > > thanks Neth. I'm hoping Jim can rebuild the 1.7beta3 file > > today sometime. > > :-) > > > > -Mike > > > > > -----Original Message----- > > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > > > Sent: Thursday, February 21, 2002 9:23 AM > > > To: [EMAIL PROTECTED] > > > Subject: Re: view results tree visualizer > > > > > > > > > Hi, > > > > > > I've checked the changes. Everything's ok except : > > > > > > 1. ViewResultsFullVisualizer.java > > > - new String((byte[])res.get(...TEXT_RESPONSE...))....; > > > > > > It's possible for (byte[])res.get(...TEXT_RESPONSE...)) to > > be null so > > > I added a check for that before creating the string > > > > > > 2. ResultCollector.java > > > - if(current < results.size()) > > > { > > > .. > > > return true; > > > } > > > > > > I changed it to : > > > > > > - if(current < results.size()-1) > > > { > > > .. > > > return true; > > > } > > > > > > Otherwise when sampling n times, you'll get n+1 samples displayed > > > (the nth sample is displayed twice). > > > > > > Pls include these changes into the next 1.7 beta. Would be > > great if > > > someone could confirm that my changes has no other side-effects. > > > > > > Thanks. > > > ---- Begin Original Message ---- > > > > > > From: "Stover, Michael" <[EMAIL PROTECTED]> > > > Sent: Wed, 20 Feb 2002 16:38:37 -0500 > > > To: "'JMeter Developers List'" <[EMAIL PROTECTED]> > > > Subject: view results tree visualizer > > > > > > > > > I've made the changes to fix the problem for view results > tree, and > > > it seems > > > to be working well. I like this visualizer a lot! > > > > > > I'll check the changes in this evening. > > > > > > -Mike > > > > > > > > > -- > > > To unsubscribe, e-mail: � <mailto:jmeter-dev- > > > [EMAIL PROTECTED]> > > > For additional commands, e-mail: <mailto:jmeter-dev- > > > [EMAIL PROTECTED]> > > > > > > > > > > > > ---- End Original Message ---- > > > > > > > > > > > > ______________________________________________________________ > > > For the latest news, go to http://www.asia1.com > > > > > > -- > > > To unsubscribe, e-mail: > > <mailto:[EMAIL PROTECTED]> > > For additional commands, e-mail: > > <mailto:[EMAIL PROTECTED]> > > > > -- > > To unsubscribe, e-mail: > > <mailto:[EMAIL PROTECTED]> > > For additional commands, e-mail: > > <mailto:[EMAIL PROTECTED]> > > > > > > -- > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
