Integrated: 8258696: Temporarily revert use of pattern match instanceof until docs-reference is fixed

2020-12-18 Thread Chris Hegarty
On Fri, 18 Dec 2020 16:54:59 GMT, Chris Hegarty wrote: > Temporarily revert use of pattern match instanceof construct until > docs-reference is fixed, see JDK-8258657. > > ... > Generating REFERENCE_API javadoc for 21 modules > > if (delegate instanceof ExecutorService service)

Re: RFR: 8258696: Temporarily revert use of pattern match instanceof until docs-reference is fixed

2020-12-18 Thread Aleksei Efimov
On Fri, 18 Dec 2020 16:54:59 GMT, Chris Hegarty wrote: > Temporarily revert use of pattern match instanceof construct until > docs-reference is fixed, see JDK-8258657. > > ... > Generating REFERENCE_API javadoc for 21 modules > > if (delegate instanceof ExecutorService service)

Re: RFR: 8258696: Temporarily revert use of pattern match instanceof until docs-reference is fixed

2020-12-18 Thread Daniel Fuchs
On Fri, 18 Dec 2020 16:54:59 GMT, Chris Hegarty wrote: > Temporarily revert use of pattern match instanceof construct until > docs-reference is fixed, see JDK-8258657. > > ... > Generating REFERENCE_API javadoc for 21 modules > > if (delegate instanceof ExecutorService service)

Re: RFR: 8258696: Temporarily revert use of pattern match instanceof until docs-reference is fixed

2020-12-18 Thread Jonathan Gibbons
On Fri, 18 Dec 2020 16:54:59 GMT, Chris Hegarty wrote: > Temporarily revert use of pattern match instanceof construct until > docs-reference is fixed, see JDK-8258657. > > ... > Generating REFERENCE_API javadoc for 21 modules > > if (delegate instanceof ExecutorService service)

Re: RFR: 8258696: Temporarily revert use of pattern match instanceof until docs-reference is fixed

2020-12-18 Thread Roger Riggs
On Fri, 18 Dec 2020 16:54:59 GMT, Chris Hegarty wrote: > Temporarily revert use of pattern match instanceof construct until > docs-reference is fixed, see JDK-8258657. > > ... > Generating REFERENCE_API javadoc for 21 modules > > if (delegate instanceof ExecutorService service)

Re: RFR: 8258696: Temporarily revert use of pattern match instanceof until docs-reference is fixed

2020-12-18 Thread Brian Burkhalter
On Fri, 18 Dec 2020 16:54:59 GMT, Chris Hegarty wrote: > Temporarily revert use of pattern match instanceof construct until > docs-reference is fixed, see JDK-8258657. > > ... > Generating REFERENCE_API javadoc for 21 modules > > if (delegate instanceof ExecutorService service)

Re: RFR: 8258696: Temporarily revert use of pattern match instanceof until docs-reference is fixed

2020-12-18 Thread Daniel D . Daugherty
On Fri, 18 Dec 2020 16:54:59 GMT, Chris Hegarty wrote: > Temporarily revert use of pattern match instanceof construct until > docs-reference is fixed, see JDK-8258657. > > ... > Generating REFERENCE_API javadoc for 21 modules > > if (delegate instanceof ExecutorService service)

RFR: 8258696: Temporarily revert use of pattern match instanceof until docs-reference is fixed

2020-12-18 Thread Chris Hegarty
Temporarily revert use of pattern match instanceof construct until docs-reference is fixed, see JDK-8258657. ... Generating REFERENCE_API javadoc for 21 modules if (delegate instanceof ExecutorService service) { ^ (use --enab

Re: [JDK-8257080] Java does not try all DNS results when opening a socket

2020-12-18 Thread Alan Bateman
On 18/12/2020 10:28, Benjamin Marwell wrote: Hi Alan, I am using the LDAP connector from the JDK (javax.naming.directory.*) [1]. As far as I know there is no way to configure this. [1]: https://docs.oracle.com/javase/jndi/tutorial/ldap/security/ldap.html

Re: [JDK-8257080] Java does not try all DNS results when opening a socket

2020-12-18 Thread Alan Bateman
On 18/12/2020 09:23, Benjamin Marwell wrote: Sounds good to me, but – to be honest – a simpler solution would be enough for now, at least for me. I actually need something which works on Java 8. I also want to share an excerpt from an RFC: RFC 1123 2.3  Applications on Multihomed hosts … Ap

Re: [JDK-8257080] Java does not try all DNS results when opening a socket

2020-12-18 Thread Benjamin Marwell
Sounds good to me, but – to be honest – a simpler solution would be enough for now, at least for me. I actually need something which works on Java 8. I also want to share an excerpt from an RFC: RFC 1123 2.3 Applications on Multihomed hosts … Application protocol implementations **SHOULD** be

Re: RFR: 8257736: InputStream from BodyPublishers.ofInputStream() leaks when IOE happens [v4]

2020-12-18 Thread Yasumasa Suenaga
On Sat, 5 Dec 2020 04:55:56 GMT, Yasumasa Suenaga wrote: >> Hi Yasumasa, >> >> Thanks for filing the issue and providing a fix. >> >> Before integrating, can you please provide a non regression test that >> verifies the fix? You can place it in `test/jdk/java/net/httpclient/`; >> Please als