Hi Julia
Here's some suggestions w.r.t. RequestPublishers.java:
For distinguishing the non-default filesystem case, an alternative to
using the try-catch block
is an if-else block with the same check as is done in Path::toFile:
if (path.getFileSystem() == FileSystems.getDefault())
When se
Hi,
Please see this fix that adds support for non-default file systems to
the HttpClient. More specifically, the change is in
RequestPublishers.FilePublisher where an UnsupportedOperationException
is thrown if a java.io.File cannot be obtained. The exception is now
caught and a function is us
Ping,
please review the below code.
Vyom
- Original message -From: "Vyom Tewari26" Sent by: "net-dev" To: net-dev@openjdk.java.netCc:Subject: [EXTERNAL] RFR 8237858: PlainSocketImpl.socketAccept() handles EINTR incorrectlyDate: Tue, Feb 25, 2020 10:07 PM
Hi ,
Please find the below