DO NOT REPLY [Bug 51595] org.apache.tomcat.jdbc.pool.jmx.ConnectionPool should be Serializeable

2012-03-20 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=51595

Filip Hanik  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #1 from Filip Hanik  2012-03-20 14:15:31 UTC ---
hi Patric,
you can still subscribe to JMX events even without retrieving this object by
itself. Am I missing something?
If I serialize that object, you wont get much back, as the actual
implementation would be marked transient, and you just get an empty shell

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 51237] SlowQueryReport interceptor does not log anything

2012-03-20 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=51237

Filip Hanik  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #1 from Filip Hanik  2012-03-20 14:02:32 UTC ---
Fixed in r1302902

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1302902 - /tomcat/trunk/modules/jdbc-pool/src/main/java/org/apache/tomcat/jdbc/pool/interceptor/SlowQueryReport.java

2012-03-20 Thread fhanik
Author: fhanik
Date: Tue Mar 20 14:02:18 2012
New Revision: 1302902

URL: http://svn.apache.org/viewvc?rev=1302902&view=rev
Log:
fix bug https://issues.apache.org/bugzilla/show_bug.cgi?id=51237 align 
implementation with the documentation

Modified:

tomcat/trunk/modules/jdbc-pool/src/main/java/org/apache/tomcat/jdbc/pool/interceptor/SlowQueryReport.java

Modified: 
tomcat/trunk/modules/jdbc-pool/src/main/java/org/apache/tomcat/jdbc/pool/interceptor/SlowQueryReport.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/modules/jdbc-pool/src/main/java/org/apache/tomcat/jdbc/pool/interceptor/SlowQueryReport.java?rev=1302902&r1=1302901&r2=1302902&view=diff
==
--- 
tomcat/trunk/modules/jdbc-pool/src/main/java/org/apache/tomcat/jdbc/pool/interceptor/SlowQueryReport.java
 (original)
+++ 
tomcat/trunk/modules/jdbc-pool/src/main/java/org/apache/tomcat/jdbc/pool/interceptor/SlowQueryReport.java
 Tue Mar 20 14:02:18 2012
@@ -84,6 +84,9 @@ public class SlowQueryReport extends Abs
 long delta = now - start;
 QueryStats qs = this.getQueryStats(sql);
 qs.failure(delta, now);
+if (log.isWarnEnabled()) {
+log.warn("Failed Query Report SQL="+sql+"; time="+delta+" 
ms;");
+}
 }
 return sql;
 }
@@ -94,6 +97,9 @@ public class SlowQueryReport extends Abs
 if (this.maxQueries > 0 ) {
 QueryStats qs = this.getQueryStats(sql);
 qs.add(delta, start);
+if (log.isWarnEnabled()) {
+log.warn("Slow Query Report SQL="+sql+"; time="+delta+" ms;");
+}
 }
 return sql;
 }



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1302901 - /tomcat/trunk/modules/jdbc-pool/src/main/java/org/apache/tomcat/jdbc/pool/ConnectionPool.java

2012-03-20 Thread fhanik
Author: fhanik
Date: Tue Mar 20 14:01:45 2012
New Revision: 1302901

URL: http://svn.apache.org/viewvc?rev=1302901&view=rev
Log:
easily readable, dont line break on paranthesis

Modified:

tomcat/trunk/modules/jdbc-pool/src/main/java/org/apache/tomcat/jdbc/pool/ConnectionPool.java

Modified: 
tomcat/trunk/modules/jdbc-pool/src/main/java/org/apache/tomcat/jdbc/pool/ConnectionPool.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/modules/jdbc-pool/src/main/java/org/apache/tomcat/jdbc/pool/ConnectionPool.java?rev=1302901&r1=1302900&r2=1302901&view=diff
==
--- 
tomcat/trunk/modules/jdbc-pool/src/main/java/org/apache/tomcat/jdbc/pool/ConnectionPool.java
 (original)
+++ 
tomcat/trunk/modules/jdbc-pool/src/main/java/org/apache/tomcat/jdbc/pool/ConnectionPool.java
 Tue Mar 20 14:01:45 2012
@@ -656,10 +656,8 @@ public class ConnectionPool {
 protected PooledConnection createConnection(long now, PooledConnection 
notUsed, String username, String password) throws SQLException {
 //no connections where available we'll create one
 PooledConnection con = create(false);
-if (username!=null) con.getAttributes().put(
-PooledConnection.PROP_USER, username);
-if (password!=null) con.getAttributes().put(
-PooledConnection.PROP_PASSWORD, password);
+if (username!=null) 
con.getAttributes().put(PooledConnection.PROP_USER, username);
+if (password!=null) 
con.getAttributes().put(PooledConnection.PROP_PASSWORD, password);
 boolean error = false;
 try {
 //connect and validate the connection



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 51198] Trunk Version : Performance enhancement in ConnectionPool regarding busy Queue

2012-03-20 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=51198

Filip Hanik  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WORKSFORME

--- Comment #2 from Filip Hanik  2012-03-20 13:52:41 UTC ---
(In reply to comment #1)
> Hello,
> Is there something wrong in the patch ?
> I have been doing very High load tests during all the week and all seems OK.
> 
> Regards
> Philippe

This was fixed in another commit by simply doing

if (pool.size()>0) {
con = pool.poll(1000, TimeUnit.MILLISECONDS);
} else {
break;
}

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 50660] Improve validationQuery error handling

2012-03-20 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=50660

Filip Hanik  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #5 from Filip Hanik  2012-03-20 13:48:03 UTC ---
(In reply to comment #3)
> What about adding an Interceptor to do the validation?  The attached
> interceptor would take the validation query and run it when the pool is
> created.  If there is a problem with the query it would report just that one
> time.
> 
> Dan

I'll add in logging when the pool starts. Right now, if initializing the pool
fails, it sends a JMX notification but doesn't log anything.  

looking in the code it does
if (log.isDebugEnabled())
log.debug("Unable to validate object:",ignore);

So that should already be taken care of

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 51615] Line 267 of "org.apache.tomcat.jdbc.pool.PooledConnection": double assignment typo

2012-03-20 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=51615

Konstantin Kolinko  changed:

   What|Removed |Added

 CC||s...@apache.org

--- Comment #2 from Konstantin Kolinko  2012-03-20 
13:47:11 UTC ---
*** Bug 50566 has been marked as a duplicate of this bug. ***

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 50566] Duplicate assignment to connection variable

2012-03-20 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=50566

Konstantin Kolinko  changed:

   What|Removed |Added

 Resolution|WORKSFORME  |DUPLICATE

--- Comment #2 from Konstantin Kolinko  2012-03-20 
13:47:11 UTC ---
Was fixed by r1154321

*** This bug has been marked as a duplicate of bug 51615 ***

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 50565] Static variables should be accessed in a static way

2012-03-20 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=50565

Konstantin Kolinko  changed:

   What|Removed |Added

 Resolution|WORKSFORME  |FIXED

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 50566] Duplicate assignment to connection variable

2012-03-20 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=50566

Filip Hanik  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WORKSFORME

--- Comment #1 from Filip Hanik  2012-03-20 13:41:53 UTC ---
already fixed in trunk

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 50565] Static variables should be accessed in a static way

2012-03-20 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=50565

Filip Hanik  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||WORKSFORME

--- Comment #1 from Filip Hanik  2012-03-20 13:41:00 UTC ---
Seems to be already fixed in trunk.

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



buildbot failure in ASF Buildbot on tomcat-7-trunk

2012-03-20 Thread buildbot
The Buildbot has detected a new failure on builder tomcat-7-trunk while 
building ASF Buildbot.
Full details are available at:
 http://ci.apache.org/builders/tomcat-7-trunk/builds/483

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-vm_ubuntu

Build Reason: scheduler
Build Source Stamp: [branch tomcat/tc7.0.x/trunk] 1302839
Blamelist: markt

BUILD FAILED: failed compile_1

sincerely,
 -The Buildbot




-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 49135] SPDY Connector for The Tomcat

2012-03-20 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=49135

Matafagafo  changed:

   What|Removed |Added

 CC||matafag...@yahoo.com

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 51181] Add support for Web Sockets

2012-03-20 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=51181

Matafagafo  changed:

   What|Removed |Added

 CC||matafag...@yahoo.com

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 52931] When using TLDs for Tag Files and specifying the JSP version, EL is ignored by default and cannot be overriden with isELIgnored

2012-03-20 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=52931

Mark Thomas  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||INVALID

--- Comment #2 from Mark Thomas  2012-03-20 11:27:14 UTC ---
tlib-version has no relationship to specification versions. Tomcat is behaving
correctly here.

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 52926] NPE in processSocket

2012-03-20 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=52926

Mark Thomas  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #1 from Mark Thomas  2012-03-20 11:11:14 UTC ---
Thanks for the report. Fixed in trunk and 7.0.x and will be included in 7.0.27
onwards.

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1302839 - in /tomcat/tc7.0.x/trunk: ./ java/org/apache/tomcat/util/net/NioEndpoint.java webapps/docs/changelog.xml

2012-03-20 Thread markt
Author: markt
Date: Tue Mar 20 11:10:46 2012
New Revision: 1302839

URL: http://svn.apache.org/viewvc?rev=1302839&view=rev
Log:
Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=52926
Protect against a NPE if the socket has been closed on another thread

Modified:
tomcat/tc7.0.x/trunk/   (props changed)
tomcat/tc7.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java
tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml

Propchange: tomcat/tc7.0.x/trunk/
--
  Merged /tomcat/trunk:r1302837

Modified: tomcat/tc7.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java?rev=1302839&r1=1302838&r2=1302839&view=diff
==
--- tomcat/tc7.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java 
(original)
+++ tomcat/tc7.0.x/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java Tue 
Mar 20 11:10:46 2012
@@ -718,6 +718,9 @@ public class NioEndpoint extends Abstrac
 public boolean processSocket(NioChannel socket, SocketStatus status, 
boolean dispatch) {
 try {
 KeyAttachment attachment = 
(KeyAttachment)socket.getAttachment(false);
+if (attachment == null) {
+return false;
+}
 attachment.setCometNotify(false); //will get reset upon next reg
 SocketProcessor sc = processorCache.poll();
 if ( sc == null ) sc = new SocketProcessor(socket,status);

Modified: tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml
URL: 
http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml?rev=1302839&r1=1302838&r2=1302839&view=diff
==
--- tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml Tue Mar 20 11:10:46 2012
@@ -137,6 +137,10 @@
 client breaks the connection before reading all the requested data.
 (markt)
   
+  
+52926: Avoid NPE when an NIO Comet connection times out on
+one thread at the same time as it is closed on another thread. (markt) 
 
+  
 
   
   



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1302837 - /tomcat/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java

2012-03-20 Thread markt
Author: markt
Date: Tue Mar 20 11:07:21 2012
New Revision: 1302837

URL: http://svn.apache.org/viewvc?rev=1302837&view=rev
Log:
Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=52926
Protect against a NPE if the socket has been closed on another thread

Modified:
tomcat/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java

Modified: tomcat/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java?rev=1302837&r1=1302836&r2=1302837&view=diff
==
--- tomcat/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java (original)
+++ tomcat/trunk/java/org/apache/tomcat/util/net/NioEndpoint.java Tue Mar 20 
11:07:21 2012
@@ -718,6 +718,9 @@ public class NioEndpoint extends Abstrac
 public boolean processSocket(NioChannel socket, SocketStatus status, 
boolean dispatch) {
 try {
 KeyAttachment attachment = 
(KeyAttachment)socket.getAttachment(false);
+if (attachment == null) {
+return false;
+}
 attachment.setCometNotify(false); //will get reset upon next reg
 SocketProcessor sc = processorCache.poll();
 if ( sc == null ) sc = new SocketProcessor(socket,status);



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



Re: svn commit: r1302649 - /tomcat/trunk/java/org/apache/catalina/startup/Catalina.java

2012-03-20 Thread Mark Thomas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 20/03/2012 01:35, Christopher Schultz wrote:
> Mark,
> 
> On 3/19/12 4:46 PM, ma...@apache.org wrote:
>> Author: markt Date: Mon Mar 19 20:46:15 2012 New Revision:
>> 1302649
>> 
>> URL: http://svn.apache.org/viewvc?rev=1302649&view=rev Log: Make
>> implementation of getParentClassLoader() consistent with the
>> other implementations across the code base.
>> 
>> Modified: 
>> tomcat/trunk/java/org/apache/catalina/startup/Catalina.java
>> 
>> Modified:
>> tomcat/trunk/java/org/apache/catalina/startup/Catalina.java URL:
>> http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/startup/Catalina.java?rev=1302649&r1=1302648&r2=1302649&view=diff
>>
>> 
==
>> --- tomcat/trunk/java/org/apache/catalina/startup/Catalina.java
>> (original) +++
>> tomcat/trunk/java/org/apache/catalina/startup/Catalina.java Mon
>> Mar 19 20:46:15 2012 @@ -177,7 +177,10 @@ public class Catalina
>> { }
>> 
>> public ClassLoader getParentClassLoader() { -return
>> parentClassLoader; +if (parentClassLoader != null) { +
>> return (parentClassLoader); +} +return
>> ClassLoader.getSystemClassLoader(); }
> 
> Not sure if this nit is too find to pick, but ClassLoader Javadoc
> says that if getParent() returns null, then the parent is the
> "bootstrap" ClassLoader. There seems to be a difference between
> "system" and "bootstrap" but it's not evident merely from reading
> the javadoc.

I am well aware of the difference.

> In this case, system ~= bootstrap, but I wanted to make sure that
> was an intentional decision. On the other hand, there's no way to
> directly get the bootstrap ClassLoader via the API anyway, so I'm
> not sure it matters at all.

The patch was intentional. The aim was to make the handling consistent.

There may be a separate issue around bootstrap vs system in osgi
environments but we can cross that bridge when we come to it.

Mark
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQIcBAEBAgAGBQJPaEqSAAoJEBDAHFovYFnnKegQAJwM7fSX/kgLCEU2dpvEJKcp
34p1YXUTqqCS3pYCze/0z3smLf68RKBoMpXy9F361K8FZk62bG7LbC8nTw15yLWc
W75xH+bFJrODQ/+N9b91Q3mwkn1idBgogNphdNwWL5j7G0h4b2IHhUavKlZ4e62O
HnpOqv/WrU192dtgPNFOpC7MJlI6ZLUamhABtE+iMdZZfpiMnoNoVvvCQhPoqNe/
k6X1d30OQxAhy+FKiWkuJKO4af1vbuY5fyuKmkqAb0PxeY3BRLksn0CfZAS8+yhz
lh+VWIyacmgbQZXf3gWEbcIpU+nqyNdl0CbmaYiELbAtWvxgnJCWcC8a5RVS3k5t
eZbay3acX0+njEs3R6FCNVJiAwC0gcfQngu9phLyHWSNr8vUtyV0QFaYyX2No2hV
JV5ZZl2y1oPanXixcAaquYEYeP66z2KfXb7SohaD8JWnCXosy1QmXawGwqMdXDKm
yrh78SyfRTSLHz9rW5NdVWwGPe08Zg06cwf1qT08HUiBMZiZwnc8rjH6PoeUGW06
O21gp1w25Ee/dyEBe7wXbP47bhMc3tYT9agy1b07Roxaqv4g0nc7MFueeZUsC0Dq
55Vs3Wg148pyecXu6b1LrJqENsUfCVbnKEiukF4Yxyq5TMPL63NF7TG/x8yhELyq
wcdjNRHVTs0EQtkuRkBn
=uaUd
-END PGP SIGNATURE-

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[VOTE] Release Apache Tomcat Connectors 1.2.34

2012-03-20 Thread Mladen Turk

Hi,

Apache Tomcat Connectors 1.2.34 release candidate is ready
for vote at [1]. This version solves regression(s) found in
released version 1.2.33 and one long lasting IIS shared memory
synchronization bug.

The VOTE will remain open for at least 48 hours.

The Apache Tomcat Connectors 1.2.34 is
 [ ] Stable, go ahead and release
 [ ] Broken because of ...



 [1] http://people.apache.org/~mturk/tomcat-connectors/jk-1.2.34/


Regards
--
^TM

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1302795 - /tomcat/jk/tags/JK_1_2_34/

2012-03-20 Thread mturk
Author: mturk
Date: Tue Mar 20 08:15:14 2012
New Revision: 1302795

URL: http://svn.apache.org/viewvc?rev=1302795&view=rev
Log:
Tag 1.2.34

Added:
tomcat/jk/tags/JK_1_2_34/
  - copied from r1302794, tomcat/jk/trunk/


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1302793 - /tomcat/jk/trunk/xdocs/index.xml

2012-03-20 Thread mturk
Author: mturk
Date: Tue Mar 20 08:05:19 2012
New Revision: 1302793

URL: http://svn.apache.org/viewvc?rev=1302793&view=rev
Log:
Use correct date

Modified:
tomcat/jk/trunk/xdocs/index.xml

Modified: tomcat/jk/trunk/xdocs/index.xml
URL: 
http://svn.apache.org/viewvc/tomcat/jk/trunk/xdocs/index.xml?rev=1302793&r1=1302792&r2=1302793&view=diff
==
--- tomcat/jk/trunk/xdocs/index.xml (original)
+++ tomcat/jk/trunk/xdocs/index.xml Tue Mar 20 08:05:19 2012
@@ -45,7 +45,7 @@ manual is described in more detail below
 
 
 
-13 March 
2012 - JK-1.2.33 stability issue
+19 March 
2012 - JK-1.2.33 stability issue
 The Apache Tomcat team wishes to draw your attention to stability issues
 that have been identified with the recent mod_jk 1.2.33 release. If you
 have not yet upgraded to mod_jk 1.2.33 we recommend that you wait for



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1302792 - /tomcat/jk/trunk/xdocs/index.xml

2012-03-20 Thread mturk
Author: mturk
Date: Tue Mar 20 08:04:14 2012
New Revision: 1302792

URL: http://svn.apache.org/viewvc?rev=1302792&view=rev
Log:
Update doc index as well

Modified:
tomcat/jk/trunk/xdocs/index.xml

Modified: tomcat/jk/trunk/xdocs/index.xml
URL: 
http://svn.apache.org/viewvc/tomcat/jk/trunk/xdocs/index.xml?rev=1302792&r1=1302791&r2=1302792&view=diff
==
--- tomcat/jk/trunk/xdocs/index.xml (original)
+++ tomcat/jk/trunk/xdocs/index.xml Tue Mar 20 08:04:14 2012
@@ -45,6 +45,16 @@ manual is described in more detail below
 
 
 
+13 March 
2012 - JK-1.2.33 stability issue
+The Apache Tomcat team wishes to draw your attention to stability issues
+that have been identified with the recent mod_jk 1.2.33 release. If you
+have not yet upgraded to mod_jk 1.2.33 we recommend that you wait for
+the mod_jk 1.2.34 release which is currently in progress. If you have
+upgraded and are experienced issues we recommend that you downgrade to
+mod_jk 1.2.32 until mod_jk 1.2.34 is available.
+
+We apologise for any inconvenience.
+
 
 13 March 2012 - 
JK-1.2.33 released
 The Apache Tomcat team is proud to announce the immediate availability



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1302791 - /tomcat/jk/trunk/xdocs/news/20120301.xml

2012-03-20 Thread mturk
Author: mturk
Date: Tue Mar 20 08:01:09 2012
New Revision: 1302791

URL: http://svn.apache.org/viewvc?rev=1302791&view=rev
Log:
Add announced message

Modified:
tomcat/jk/trunk/xdocs/news/20120301.xml

Modified: tomcat/jk/trunk/xdocs/news/20120301.xml
URL: 
http://svn.apache.org/viewvc/tomcat/jk/trunk/xdocs/news/20120301.xml?rev=1302791&r1=1302790&r2=1302791&view=diff
==
--- tomcat/jk/trunk/xdocs/news/20120301.xml (original)
+++ tomcat/jk/trunk/xdocs/news/20120301.xml Tue Mar 20 08:01:09 2012
@@ -31,6 +31,19 @@
 
 
 
+
+
+
+The Apache Tomcat team wishes to draw your attention to stability issues
+   that have been identified with the recent mod_jk 1.2.33 release. If you
+   have not yet upgraded to mod_jk 1.2.33 we recommend that you wait for
+   the mod_jk 1.2.34 release which is currently in progress. If you have
+   upgraded and are experienced issues we recommend that you downgrade to
+   mod_jk 1.2.32 until mod_jk 1.2.34 is available.
+
+We apologise for any inconvenience.
+
+
 
 
 



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



DO NOT REPLY [Bug 51966] Tomcat does not support ssha hashed passwords in all contexts

2012-03-20 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=51966

--- Comment #8 from Neale Rudd  2012-03-20 07:07:08 UTC ---
Could also change Realmbase.main to use SecureRandom.

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.

-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



<    1   2