Re: [DISCUSS] Deprecate and remove RealmBase#stripRealmForGss

2020-10-13 Thread Michael Osipov
Am 2020-10-13 um 12:32 schrieb Mark Thomas: On 13/10/2020 10:48, Michael Osipov wrote: Folks, I'd like to propose to get rid of that config option in 10 and deprecate in previous versions for the following reasons: * It suffers from abstraction: It assumes that the GSS name is always email

Re: [tomcat] 01/04: Add connection pool to JNDI realm

2020-10-13 Thread Rémy Maucherat
On Tue, Oct 13, 2020 at 8:26 PM Michael Osipov wrote: > Am 2020-10-13 um 13:49 schrieb Rémy Maucherat: > > On Tue, Oct 13, 2020 at 11:33 AM Michael Osipov > wrote: > > > >> Am 2020-10-07 um 22:34 schrieb r...@apache.org: > >>> This is an automated email from the ASF dual-hosted git repository.

Re: [tomcat] branch 8.5.x updated: Always retry on a new connection, even when pooling

2020-10-13 Thread Michael Osipov
Am 2020-10-13 um 16:05 schrieb r...@apache.org: This is an automated email from the ASF dual-hosted git repository. remm pushed a commit to branch 8.5.x in repository https://gitbox.apache.org/repos/asf/tomcat.git The following commit(s) were added to refs/heads/8.5.x by this push: new

Re: [tomcat] 01/04: Add connection pool to JNDI realm

2020-10-13 Thread Michael Osipov
Am 2020-10-13 um 13:49 schrieb Rémy Maucherat: On Tue, Oct 13, 2020 at 11:33 AM Michael Osipov wrote: Am 2020-10-07 um 22:34 schrieb r...@apache.org: This is an automated email from the ASF dual-hosted git repository. remm pushed a commit to branch 8.5.x in repository

Cannot override servlet context init param

2020-10-13 Thread Matt Benson
Hello, Today I was experimenting with a Servlet ContainerInitializer in which I wanted to modify the value of a particular init param, but found that Tomcat's ServletContext implementation (ApplicationContext) explicitly rejected the override. The Servlet API doesn't seem to suggest that what I'm

[Bug 60030] Run away CPU with JSSE / OpenSSL with IE8

2020-10-13 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=60030 --- Comment #5 from kivetomani --- Kami Memberikan Bonus Special Mystery Box untuk para member aktif dan setia setiap Hari Sabtu Dan Minggu berhadiah UANG TUNAI! https://199.192.31.67 http://www.dewatogelonline88.com/ https://199.192.26.181

[Bug 60030] Run away CPU with JSSE / OpenSSL with IE8

2020-10-13 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=60030 kivetomani changed: What|Removed |Added URL||https://199.192.31.67 -- You are

[GitHub] [tomcat] blueSky1825821 commented on pull request #368: fix: CachedResource add path length

2020-10-13 Thread GitBox
blueSky1825821 commented on pull request #368: URL: https://github.com/apache/tomcat/pull/368#issuecomment-707629467 > I've done some calculations and the absolute upper limit (the actual upper limit will be lower) is that a cache with a 10MB limit on size will actually use a little under

Re: [tomcat] 01/04: Add connection pool to JNDI realm

2020-10-13 Thread Michael Osipov
Am 2020-10-07 um 22:34 schrieb r...@apache.org: This is an automated email from the ASF dual-hosted git repository. remm pushed a commit to branch 8.5.x in repository https://gitbox.apache.org/repos/asf/tomcat.git commit 50de36b7874da98591345e40b374a1e2dd52c188 Author: remm AuthorDate: Thu

[DISCUSS] Deprecate and remove RealmBase#stripRealmForGss

2020-10-13 Thread Michael Osipov
Folks, I'd like to propose to get rid of that config option in 10 and deprecate in previous versions for the following reasons: * It suffers from abstraction: It assumes that the GSS name is always email style w/o checking its OID * The realm part, if any, is an integeral part of the

[Bug 64765] ThreadPoolExecutor#submittedCount wrong after undeploy

2020-10-13 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64765 --- Comment #4 from m...@bsi-software.com --- I confirm the issue seems to be fixed. Tested with release 9.0.39. -- You are receiving this mail because: You are the assignee for the bug.

[Bug 64809] New: it's haven't reset connection properties based on connectionpool configuration information when returnConnection

2020-10-13 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64809 Bug ID: 64809 Summary: it's haven't reset connection properties based on connectionpool configuration information when returnConnection Product: Tomcat 8

[Bug 64809] Connection properties not reset to defaults when Connection is returned to the pool

2020-10-13 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64809 --- Comment #2 from xiongchao --- protected void returnConnection(PooledConnection con) { if (this.isClosed()) { this.release(con); } else { if (con != null) { try {

Re: [tomcat] branch master updated: Partial fix for BZ 63362 provide h2 request statistics

2020-10-13 Thread Mark Thomas
On 09/10/2020 17:43, ma...@apache.org wrote: > This is an automated email from the ASF dual-hosted git repository. > > markt pushed a commit to branch master > in repository https://gitbox.apache.org/repos/asf/tomcat.git > > > The following commit(s) were added to refs/heads/master by this

Re: [DISCUSS] Deprecate and remove RealmBase#stripRealmForGss

2020-10-13 Thread Mark Thomas
On 13/10/2020 10:48, Michael Osipov wrote: > Folks, > > I'd like to propose to get rid of that config option in 10 and deprecate > in previous versions for the following reasons: > > * It suffers from abstraction: It assumes that the GSS name is always > email style w/o checking its OID > * The

Re: [tomcat] 01/04: Add connection pool to JNDI realm

2020-10-13 Thread Rémy Maucherat
On Tue, Oct 13, 2020 at 11:33 AM Michael Osipov wrote: > Am 2020-10-07 um 22:34 schrieb r...@apache.org: > > This is an automated email from the ASF dual-hosted git repository. > > > > remm pushed a commit to branch 8.5.x > > in repository https://gitbox.apache.org/repos/asf/tomcat.git > > > >

[Bug 64809] Connection properties not reset to defaults when Connection is returned to the pool

2020-10-13 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64809 Mark Thomas changed: What|Removed |Added Target Milestone||--- Summary|it's haven't

[tomcat] branch 9.0.x updated: Always retry on a new connection, even when pooling

2020-10-13 Thread remm
This is an automated email from the ASF dual-hosted git repository. remm pushed a commit to branch 9.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git The following commit(s) were added to refs/heads/9.0.x by this push: new a91a861 Always retry on a new connection, even

[tomcat] branch 8.5.x updated: Always retry on a new connection, even when pooling

2020-10-13 Thread remm
This is an automated email from the ASF dual-hosted git repository. remm pushed a commit to branch 8.5.x in repository https://gitbox.apache.org/repos/asf/tomcat.git The following commit(s) were added to refs/heads/8.5.x by this push: new 883600b Always retry on a new connection, even

[tomcat] branch 9.0.x updated: Always retry on a new connection, even when pooling

2020-10-13 Thread remm
This is an automated email from the ASF dual-hosted git repository. remm pushed a commit to branch 9.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git The following commit(s) were added to refs/heads/9.0.x by this push: new a91a861 Always retry on a new connection, even

Re: [tomcat] 01/04: Add connection pool to JNDI realm

2020-10-13 Thread Rémy Maucherat
On Tue, Oct 13, 2020 at 1:49 PM Rémy Maucherat wrote: That it's the issue. However, since the realm works well in the single > connection case, I'd just put that loop in authenticate(String username, > String credentials), keep the same simple design and be done with it. > Done. If it doesn't

[tomcat] branch master updated: Always retry on a new connection, even when pooling

2020-10-13 Thread remm
This is an automated email from the ASF dual-hosted git repository. remm pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tomcat.git The following commit(s) were added to refs/heads/master by this push: new 35b2d79 Always retry on a new connection, even