Browse Source

Merge branch '3.1.x'

Closes gh-37461
pull/34900/head
Moritz Halbritter 2 years ago
parent
commit
ec87e65c8f
  1. 8
      spring-boot-project/spring-boot-tools/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/socket/DomainSocket.java

8
spring-boot-project/spring-boot-tools/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/socket/DomainSocket.java

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
/*
* Copyright 2012-2020 the original author or authors.
* Copyright 2012-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -69,9 +69,15 @@ public abstract class DomainSocket extends AbstractSocket { @@ -69,9 +69,15 @@ public abstract class DomainSocket extends AbstractSocket {
private FileDescriptor open(String path) {
int handle = socket(PF_LOCAL, SOCK_STREAM, 0);
try {
connect(path, handle);
return new FileDescriptor(handle, this::close);
}
catch (RuntimeException ex) {
this.close(handle);
throw ex;
}
}
private int read(ByteBuffer buffer) throws IOException {
try (Handle handle = this.fileDescriptor.acquire()) {

Loading…
Cancel
Save