[Bug 65204] LinkageError AuthConfigFactoryImpl

2021-03-25 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65204

Andy Wilkinson  changed:

   What|Removed |Added

 CC||awilkin...@pivotal.io

-- 
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



[Bug 65204] LinkageError AuthConfigFactoryImpl

2021-03-25 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65204

--- Comment #1 from Lukas Vasek  ---
Created attachment 37786
  --> https://bz.apache.org/bugzilla/attachment.cgi?id=37786&action=edit
successfull tomcat startup

-- 
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



[Bug 65204] LinkageError AuthConfigFactoryImpl

2021-03-25 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65204

--- Comment #2 from Lukas Vasek  ---
Created attachment 37787
  --> https://bz.apache.org/bugzilla/attachment.cgi?id=37787&action=edit
unsuccessfull tomcat startup

-- 
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



[Bug 65204] LinkageError AuthConfigFactoryImpl

2021-03-25 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65204

--- Comment #3 from Lukas Vasek  ---
Hello,
I've added logs from statup of both v41 and v43 tomcats if that helps anyhow

-- 
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



[Bug 65204] LinkageError AuthConfigFactoryImpl

2021-03-25 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65204

Phillip Webb  changed:

   What|Removed |Added

 CC||pw...@pivotal.io

-- 
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



[Bug 65204] LinkageError AuthConfigFactoryImpl

2021-03-25 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65204

--- Comment #4 from Mark Thomas  ---
I'm wondering if this commit might be the trigger for this:
https://github.com/apache/tomcat/commit/caba05c

Investigating...

-- 
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



[Bug 65204] LinkageError AuthConfigFactoryImpl

2021-03-25 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65204

--- Comment #5 from Lukas Vasek  ---
Well if you can prepare some release/branch which I can test with, just let me
know and I will test that.

-- 
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



[Bug 65204] LinkageError AuthConfigFactoryImpl

2021-03-25 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65204

Mark Thomas  changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #6 from Mark Thomas  ---
I can't recreate this with a simple test.

Errors like this are typically triggered when multiple instances of the same
class are present. You may want to check for this.

We are going to need the simplest possible test case that reproduces this.

-- 
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



[Bug 65204] LinkageError AuthConfigFactoryImpl

2021-03-25 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65204

--- Comment #7 from Lukas Vasek  ---
that's really hard because it's huge proprietary project and I don't know what
exactly I should export out of the project to prepare some test case. but give
me some time I'll try to do my best

-- 
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



[Bug 65204] LinkageError AuthConfigFactoryImpl

2021-03-26 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65204

--- Comment #8 from Lukas Vasek  ---
Hello,
so finally it wasn't that hard.
Here is an example https://github.com/bilak-poc/spring-boot-tomcat-issue

We are using jmockit (agent?)
https://github.com/bilak-poc/spring-boot-tomcat-issue/blob/main/pom.xml#L71 so
probably this is causing also some issues.

If we switch the tomcat to 9.0.41
https://github.com/bilak-poc/spring-boot-tomcat-issue/blob/main/pom.xml#L21
then it's working, but with current 9.0.43 it's not. 

Do you think such thing can be fixed on tomcat site or do I have to contact
jmockit owner?

Thanks

-- 
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



[Bug 65204] LinkageError AuthConfigFactoryImpl

2021-03-28 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65204

Mark Thomas  changed:

   What|Removed |Added

 Resolution|--- |INVALID
 Status|NEEDINFO|RESOLVED

--- Comment #9 from Mark Thomas  ---
This looks like a jmockit issue.

The failure only occurs when the agent is enabled.

It does appear to be related to the use of lambda expressions. Reverting
https://github.com/apache/tomcat/commit/caba05c9 also fixes the failure.

-- 
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



[Bug 65204] LinkageError AuthConfigFactoryImpl

2021-03-29 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=65204

--- Comment #10 from Lukas Vasek  ---
Hello,
submitted also issue to jmockit https://github.com/jmockit/jmockit1/issues/707

-- 
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