Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [eclipselink-users] SequencingManager question

Hi Florian,

This definitely looks like a bug. A quick look at the latest code revealed the same incorrect code is still present there as well.

Can you please enter a bug for this?

Cheers,
Guy

On 07/03/2012 4:53 AM, Florian Schaetz wrote:

Hello,

 

When going through the code (see my other mail) I noticed a piece of code that could be a bug, but it also could be intentional:

 

SequencingManager, Line 151 (in EL 2.3.2):

 

if (getMinPoolSize() == -1) {

setMinPoolSize(2);

}

if (getMaxPoolSize() == -1) {

  setMinPoolSize(2);

}

 

Is the 2nd “setMinPoolSize” really correct? Shouldn’t it read “setMaxPoolSize”? If it’s not a bug, please disregard this mail, just wanted to mention it, in case it is one.

 

Regards,

 

Flo

_______________________________________________ eclipselink-users mailing list eclipselink-users@xxxxxxxxxxx https://dev.eclipse.org/mailman/listinfo/eclipselink-users

Back to the top