[tomcat] 01/02: Improve locking of utility executor

2023-05-10 Thread markt
locking of utility executor Fixes some edge cases around calling setUtilityThreads() during stop --- java/org/apache/catalina/core/StandardServer.java | 51 +-- 1 file changed, 29 insertions(+), 22 deletions(-) diff --git a/java/org/apache/catalina/core/StandardServer.java

[tomcat] 02/02: Move management of utility executor from init/destroy to start/stop

2023-05-10 Thread markt
management of utility executor from init/destroy to start/stop --- java/org/apache/catalina/connector/Connector.java | 14 --- java/org/apache/catalina/core/ContainerBase.java | 20 +++- java/org/apache/catalina/core/StandardServer.java | 28 +++--- .../apache

[tomcat] 02/02: Move management of utility executor from init/destroy to start/stop

2023-05-10 Thread markt
management of utility executor from init/destroy to start/stop --- java/org/apache/catalina/connector/Connector.java | 14 --- java/org/apache/catalina/core/ContainerBase.java | 20 +++- java/org/apache/catalina/core/StandardServer.java | 28 +++--- .../apache

[tomcat] 01/02: Improve locking of utility executor

2023-05-10 Thread markt
locking of utility executor Fixes some edge cases around calling setUtilityThreads() during stop --- java/org/apache/catalina/core/StandardServer.java | 51 +-- 1 file changed, 29 insertions(+), 22 deletions(-) diff --git a/java/org/apache/catalina/core/StandardServer.java

Re: [tomcat] 02/02: Move management of utility executor from init/destroy to start/stop

2023-05-05 Thread Mark Thomas
https://gitbox.apache.org/repos/asf/tomcat.git commit 4b097bf2e9075e9e2949ec5aa410cba3c2b85374 Author: Mark Thomas AuthorDate: Thu May 4 14:41:01 2023 +0100 Move management of utility executor from init/destroy to start/stop --- java/org/apache/catalina/connector/Connector.java | 13 +++--- java

Re: [tomcat] 02/02: Move management of utility executor from init/destroy to start/stop

2023-05-05 Thread Han Li
pushed a commit to branch main >>> in repository https://gitbox.apache.org/repos/asf/tomcat.git >>> >>> commit 4b097bf2e9075e9e2949ec5aa410cba3c2b85374 >>> Author: Mark Thomas >>> AuthorDate: Thu May 4 14:41:01 2023 +0100 >>> >>> Move managem

Re: [tomcat] 02/02: Move management of utility executor from init/destroy to start/stop

2023-05-05 Thread koteswara Rao Gundapaneni
t > > commit 4b097bf2e9075e9e2949ec5aa410cba3c2b85374 > Author: Mark Thomas > AuthorDate: Thu May 4 14:41:01 2023 +0100 > > Move management of utility executor from init/destroy to start/stop > --- > java/org/apache/catalina/connector/Connector.java | 13 +++

Re: [tomcat] 02/02: Move management of utility executor from init/destroy to start/stop

2023-05-05 Thread Mark Thomas
4b097bf2e9075e9e2949ec5aa410cba3c2b85374 Author: Mark Thomas AuthorDate: Thu May 4 14:41:01 2023 +0100 Move management of utility executor from init/destroy to start/stop --- java/org/apache/catalina/connector/Connector.java | 13 +++--- java/org/apache/catalina/core/ContainerBase.java | 20 +++- java/org

Re: [tomcat] 02/02: Move management of utility executor from init/destroy to start/stop

2023-05-04 Thread Han Li
410cba3c2b85374 > Author: Mark Thomas > AuthorDate: Thu May 4 14:41:01 2023 +0100 > > Move management of utility executor from init/destroy to start/stop > --- > java/org/apache/catalina/connector/Connector.java | 13 +++--- > java/org/apache/catalina/core/ContainerBase.j

Re: [tomcat] 02/02: Move management of utility executor from init/destroy to start/stop

2023-05-04 Thread Rémy Maucherat
/asf/tomcat.git > > > > commit 4b097bf2e9075e9e2949ec5aa410cba3c2b85374 > > Author: Mark Thomas > > AuthorDate: Thu May 4 14:41:01 2023 +0100 > > > > Move management of utility executor from init/destroy to start/stop > > My plan is to back-port th

Re: [tomcat] 02/02: Move management of utility executor from init/destroy to start/stop

2023-05-04 Thread Mark Thomas
: Thu May 4 14:41:01 2023 +0100 Move management of utility executor from init/destroy to start/stop My plan is to back-port this to earlier versions once the May releases have been tagged. Mark - To unsubscribe, e-mail: dev

[tomcat] 02/02: Move management of utility executor from init/destroy to start/stop

2023-05-04 Thread markt
management of utility executor from init/destroy to start/stop --- java/org/apache/catalina/connector/Connector.java | 13 +++--- java/org/apache/catalina/core/ContainerBase.java | 20 +++- java/org/apache/catalina/core/StandardServer.java | 28 +++--- .../apache/catalina

[tomcat] 01/02: Improve locking of utility executor

2023-05-04 Thread markt
locking of utility executor Fixes some edge cases around calling setUtilityThreads() during stop --- java/org/apache/catalina/core/StandardServer.java | 51 +-- 1 file changed, 29 insertions(+), 22 deletions(-) diff --git a/java/org/apache/catalina/core/StandardServer.java

Re: Utility Executor

2023-04-28 Thread Rémy Maucherat
issue [1], the question has > > > been raised whether there is merit in moving the Utility executor > > > start/stop from StandardServer init/destroy to start/stop. > > > > > > I've looked at the code and I don't see any uses of the Executor until > >

Re: Utility Executor

2023-04-28 Thread Konstantin Kolinko
пт, 28 апр. 2023 г. в 16:21, Konstantin Kolinko : > > чт, 27 апр. 2023 г. в 19:34, Mark Thomas : > > > > Hi all, > > > > As part of a discussion around a Spring Boot issue [1], the question has > > been raised whether there is merit in moving the Utility executo

Re: Utility Executor

2023-04-28 Thread Konstantin Kolinko
чт, 27 апр. 2023 г. в 19:34, Mark Thomas : > > Hi all, > > As part of a discussion around a Spring Boot issue [1], the question has > been raised whether there is merit in moving the Utility executor > start/stop from StandardServer init/destroy to start/stop. > > I

Re: Utility Executor

2023-04-28 Thread koteswara Rao Gundapaneni
ing-boot issue at all. > > Remy > > > > > > > > > Remy > > > > > > > What about getting it injected from the context and ignoring its > > > lifecycle > > > > ("external" notion)? Will keep it globally usable and integrate > smooth

Re: Utility Executor

2023-04-28 Thread Romain Manni-Bucau
> ("external" notion)? Will keep it globally usable and integrate > smoothly > > > > with any env. > > > > > > > > > > > > Le ven. 28 avr. 2023 à 04:27, Han Li a écrit : > > > > > > > > > > > > > &

Re: Utility Executor

2023-04-28 Thread Rémy Maucherat
> > > Le ven. 28 avr. 2023 à 04:27, Han Li a écrit : > > > > > > > > > > > > > > > > On Apr 28, 2023, at 00:33, Mark Thomas wrote: > > > > > > > > > > Hi all, > > > > > > > > >

Re: Utility Executor

2023-04-28 Thread Romain Manni-Bucau
; notion)? Will keep it globally usable and integrate smoothly > > with any env. > > > > > > Le ven. 28 avr. 2023 à 04:27, Han Li a écrit : > > > > > > > > > > > > On Apr 28, 2023, at 00:33, Mark Thomas wrote: > > > > > > &

Re: Utility Executor

2023-04-27 Thread Han Li
quot; notion)? Will keep it globally usable and integrate smoothly >> with any env. >> >> >> Le ven. 28 avr. 2023 à 04:27, Han Li a écrit : >> >>> >>> >>>> On Apr 28, 2023, at 00:33, Mark Thomas wrote: >>>> >>>

Re: Utility Executor

2023-04-27 Thread Rémy Maucherat
gt; > Le ven. 28 avr. 2023 à 04:27, Han Li a écrit : > > > > > > > > On Apr 28, 2023, at 00:33, Mark Thomas wrote: > > > > > > Hi all, > > > > > > As part of a discussion around a Spring Boot issue [1], the question has > > been ra

Re: Utility Executor

2023-04-27 Thread Romain Manni-Bucau
; > As part of a discussion around a Spring Boot issue [1], the question has > been raised whether there is merit in moving the Utility executor > start/stop from StandardServer init/destroy to start/stop. > > > > I've looked at the code and I don't see any uses of the

Re: Utility Executor

2023-04-27 Thread Han Li
> On Apr 28, 2023, at 00:33, Mark Thomas wrote: > > Hi all, > > As part of a discussion around a Spring Boot issue [1], the question has been > raised whether there is merit in moving the Utility executor start/stop from > StandardServer init/destroy to start/stop. &g

Re: Utility Executor

2023-04-27 Thread Rémy Maucherat
On Thu, Apr 27, 2023 at 6:34 PM Mark Thomas wrote: > > Hi all, > > As part of a discussion around a Spring Boot issue [1], the question has > been raised whether there is merit in moving the Utility executor > start/stop from StandardServer init/destroy to start/stop. > >

Utility Executor

2023-04-27 Thread Mark Thomas
Hi all, As part of a discussion around a Spring Boot issue [1], the question has been raised whether there is merit in moving the Utility executor start/stop from StandardServer init/destroy to start/stop. I've looked at the code and I don't see any uses of the Executor until sub-

[tomcat] branch 9.0.x updated: Expose utility executor to webapps

2023-04-11 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 4e3972d33d Expose utility executor to webapps

[tomcat] branch 10.1.x updated: Expose utility executor to webapps

2023-04-11 Thread remm
This is an automated email from the ASF dual-hosted git repository. remm pushed a commit to branch 10.1.x in repository https://gitbox.apache.org/repos/asf/tomcat.git The following commit(s) were added to refs/heads/10.1.x by this push: new fe797d1417 Expose utility executor to webapps

Re: [tomcat] branch master updated: Use utility executor for scanning

2020-09-18 Thread Rémy Maucherat
/tomcat.git > > > > > > The following commit(s) were added to refs/heads/master by this push: > > new 27bb36b Use utility executor for scanning > > 27bb36b is described below > > > > commit 27bb36bdaa56d62fdcc28d3b8e3d4c25f4a44a50 > > Author: r

Re: [tomcat] branch master updated: Use utility executor for scanning

2020-09-18 Thread Mark Thomas
s/master by this push: > new 27bb36b Use utility executor for scanning > 27bb36b is described below > > commit 27bb36bdaa56d62fdcc28d3b8e3d4c25f4a44a50 > Author: remm > AuthorDate: Fri Sep 18 11:40:17 2020 +0200 > > Use utility executor for scanning > &

[tomcat] branch 9.0.x updated: Use utility executor for scanning

2020-09-18 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 101476c Use utility executor for scanning 101476c

[tomcat] branch master updated: Use utility executor for scanning

2020-09-18 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 27bb36b Use utility executor for scanning