Jochen Wiedmann wrote on Tuesday, August 07, 2007 12:10 PM:
> On 8/7/07, Jörg Schaible <[EMAIL PROTECTED]> wrote:
>
>> One wish: Can we add the following lines to the
> surefire-plugin's section in the pluginManagement:
>>
>>
>> false
>>
>>
>> This will configure the plugin not to wri
The insomnia got me today... Couldn't sleep! :-)
https://issues.apache.org/jira/browse/BEANUTILS-291
There is a proposed fix on the JIRA.. it works!
Nice.. isn't?
The idea is to use a WeakHashMap on the
Property also. I don't think this would cause performance issues, since
WeakhashMap woul
I just added the testcase to this JIRA:
https://issues.apache.org/jira/browse/BEANUTILS-291
And it replicated the problem as expected... The test fails as
expected... I have done some double checks, and it is the same scenario
as it would happen on any application server.
Niall Pemberton w
Tushar,
If you want to use BasicDataSource, you need to set the pool
properties using its setters (i.e., using the setters on the
BasicDataSource instance). It is designed to take care of creating
and managing the underlying pool and PoolingDataSource for you.
Have a look at the examples here:
I use following settings.
DRIVER : com.informix.jdbc.IfxDriver
URL:
jdbc:Informix:sqli://host_ip:1557/db:INFORMIXSERVER=dbserver;user=userna
me;password=password;lobcache=-1;fet_buf_size=32767;optofc=1;ifx_autofre
e=true;
MaxPoolSize = 30
MaxIdle =20
MinIdle = 20
MaxWait = 1000
Test on Borrow = tru
I had a look at the JIRA documentation and found this :-)
"JIRA generates emails in reaction to events using a templating engine.
The templating engine is Apache Jakarta's Velocity."
Unfortunately the templates are per JIRA installation, so no luck adding
unsubscribe instructions for [EMAIL P
Dave,
What Driver / database / settings are you using?
It seems there is underlying connection pol which prevents you from
obtaining 9th connection.
Sergey.
2007/8/7, Dave, Tushar <[EMAIL PROTECTED]>:
>
> I am initializing the Pool as below.
>
> private void initialize(ConnectionPoolParameters
Dennis Lundberg a écrit :
> That's a good question. It is some Maven magic...
Sometimes, maven looks to me like black magic. I will learn the tricks.
>
> The scm element of the pom is rewritten automatically by the
> maven-release-plugin. When I do 'mvn release:prepare' on the parent pom,
> in a
Thanks Rahul
Do you think it would be possible to add unsubscribe information to the
emails that JIRA sends out? I'll have a look and see if I can find
anything...
Rahul Akolkar wrote:
To unsubcribe from:
[EMAIL PROTECTED]
please send email to:
[EMAIL PROTECTED]
from the email addres
That's a good question. It is some Maven magic...
The scm element of the pom is rewritten automatically by the
maven-release-plugin. When I do 'mvn release:prepare' on the parent pom,
in a couple of days, the release plugin will create a tag in subversion
and it will change the scm element in
I am initializing the Pool as below.
private void initialize(ConnectionPoolParameters oParams)
{
GenericObjectPool oPool = new GenericObjectPool(null);
oPool.setMaxActive(oParams.getMaxSize());
oPool.setMaxIdle (oParams.getMinSize ());
oPool.setMinIdle(oParams.getMinSize());
2007/8/7, Dave, Tushar <[EMAIL PROTECTED]>:
> The call to oPool.getConnection() gets blocked indefinitely when I try
> to get the 9th connection.
> Am I missing something?
It's the normal behaviour! You have to close the connection when finished!
Antonio
-
I am initializing the GeneriConnectionPool using the following
parameters
MaxActive=3D30
MaxIdle=3D20
MinIdle=3D20
MaxWait=3D1000
TestOnBorrow=3Dtrue
ActionWhenExhasuted =3D 2(GROW)
I try to test the connection pool by using the following code.
List liCon =3D new ArrayList(); for(i
I always turn it on.
On 8/7/07, Jochen Wiedmann <[EMAIL PROTECTED]> wrote:
>
> On 8/7/07, Jörg Schaible <[EMAIL PROTECTED]> wrote:
>
> > One wish: Can we add the following lines to the surefire-plugin's
> section in the pluginManagement:
> >
> >
> > false
> >
> >
> > This will configure
To unsubcribe from:
[EMAIL PROTECTED]
please send email to:
[EMAIL PROTECTED]
from the email address you used to subscribe.
Ofcourse, replace "listname" and "project" as needed. Let us know if
you have problems with the (recently moved) Commons lists. Thanks.
-Rahul
P.S.-I have BCC'ed th
Online report :
http://pbep999:8080/continuum/buildResult.action?buildId=6&projectId=7
Build statistics:
State: Failed
Previous Build: No previous build.
Started at: Tue 7 Aug 2007 17:15:23 +0200
Finished at: Tue 7 Aug 2007 17:15:33 +0200
Total time: 9s
Build Trigger: Forced
Build Number:
> should the second sample on the wiki page not contain
> SoftReference reference = new SoftReference(x); instead of
> WeakReference reference = new WeakReference(x); ?
Yep! :-) Just fixed it.
Thanks!
Clebert
-
To unsubscrib
On Tue, 2007-08-07 at 11:23 +0200, simon wrote:
>
> Oops .. sorry Oleksandr. The latest release is 1.1.0.
>
> All the commons websites were recently regenerated (as part of the move
> to our new web address) and this was done from the TRUNK code. The docs
> have been updated in svn ready for our
On 8/7/07, simon <[EMAIL PROTECTED]> wrote:
> However if you're proposing a separate commit list for every project I'd
> be against that for a number of reasons. Why can't you just add a filter
> if you only want certain topics?
If I am the only one with the desire to reduce the noise, then the
p
On Tue, 2007-08-07 at 12:26 +0200, Jochen Wiedmann wrote:
> Hi,
>
> now that we are a TLP, wouldn't it be good to reduce the noise on the
> developers mailing list? I'd be really glad, if we could achieve that.
>
> I understand, that a common developers mailing list supports the
> community, and
Failed build logs:
http://vmbuild.apache.org/~commons/nightly/logs//20070807/math.log
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
Hi,
now that we are a TLP, wouldn't it be good to reduce the noise on the
developers mailing list? I'd be really glad, if we could achieve that.
I understand, that a common developers mailing list supports the
community, and that's of course good, but we could at least split off
mailing lists for
On 8/7/07, Jörg Schaible <[EMAIL PROTECTED]> wrote:
> One wish: Can we add the following lines to the surefire-plugin's section in
> the pluginManagement:
>
>
> false
>
>
> This will configure the plugin not to write the *.txt files into
> target/surefire-report, but to print them on t
Hello,
Just one question: the part changed the directory part from
commons-parent/tags/commons-parent-3 to commons-parent/trunk. Does this mean
things may change as trunk is modified or should this target directory be
somewhere in tags ?
Luc
Selon Dennis Lundberg <[EMAIL PROTECTED]>:
> Hi,
>
>
On Mon, 2007-08-06 at 20:04 +0100, Charl Gerber wrote:
> Hi all,
>
> I tried to download the latest build of commons-email,
> but the download directories of the nightly builds are
> empty. Where can I get the latest build?
We're in the middle of moving everything from jakarta.apache.org/commons
On Tue, 2007-08-07 at 09:33 +0200, Oleksandr Alesinskyy wrote:
> Hello,
>
> I'm niot sure if this a proper contact point, but I have not found better
> one, sorry.
>
> On http://commons.apache.org/logging/ 1.1.1 Release - Jan 2007 is mentioned,
> but it is absent from download page
> (http://comm
Hello,
I'm niot sure if this a proper contact point, but I have not found better
one, sorry.
On http://commons.apache.org/logging/ 1.1.1 Release - Jan 2007 is mentioned,
but it is absent from download page
(http://commons.apache.org/downloads/download_logging.cgi) as far as I can
see from version
27 matches
Mail list logo