Skip to content

Commit 7fc5c4b

Browse files
committed
Merge branch '3.3.x'
Closes gh-42082
2 parents 85682f8 + b29bc2d commit 7fc5c4b

File tree

3 files changed

+5
-4
lines changed
  • spring-boot-project/spring-boot-tools

3 files changed

+5
-4
lines changed

spring-boot-project/spring-boot-tools/spring-boot-buildpack-platform/src/main/java/org/springframework/boot/buildpack/platform/build/BuildLog.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ Consumer<TotalProgressEvent> pullingImage(ImageReference imageReference, ImagePl
121121
* Log that a cache cleanup step was not completed successfully.
122122
* @param cache the cache
123123
* @param exception any exception that caused the failure
124+
* @since 3.2.6
124125
*/
125126
void failedCleaningWorkDir(Cache cache, Exception exception);
126127

spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/dockerTest/java/org/springframework/boot/gradle/tasks/bundling/BootBuildImageIntegrationTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,9 +337,9 @@ void buildsImageWithBindCaches() throws IOException {
337337
cleanupCache(launchCachePath);
338338
}
339339

340-
private static void cleanupCache(Path buildCachePath) {
340+
private static void cleanupCache(Path cachePath) {
341341
try {
342-
FileSystemUtils.deleteRecursively(buildCachePath);
342+
FileSystemUtils.deleteRecursively(cachePath);
343343
}
344344
catch (Exception ex) {
345345
// ignore

spring-boot-project/spring-boot-tools/spring-boot-maven-plugin/src/dockerTest/java/org/springframework/boot/maven/BuildImageTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -464,9 +464,9 @@ void whenBuildImageIsInvokedWithBindCaches(MavenBuild mavenBuild) {
464464
});
465465
}
466466

467-
private static void cleanupCache(Path buildCachePath) {
467+
private static void cleanupCache(Path cachePath) {
468468
try {
469-
FileSystemUtils.deleteRecursively(buildCachePath);
469+
FileSystemUtils.deleteRecursively(cachePath);
470470
}
471471
catch (Exception ex) {
472472
// ignore

0 commit comments

Comments
 (0)