Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4e2dc51

Browse files
retashiv0408
authored andcommittedApr 25, 2024
Update to Gradle 8.7 (opensearch-project#12444)
Signed-off-by: Andriy Redko <andriy.redko@aiven.io> Signed-off-by: Shivansh Arora <hishiv@amazon.com>
1 parent 0f2541d commit 4e2dc51

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed
 

‎buildSrc/src/testFixtures/java/org/opensearch/gradle/test/GradleThreadsFilter.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ public class GradleThreadsFilter implements ThreadFilter {
4545
public boolean reject(Thread t) {
4646
return t.getName().startsWith("Exec process")
4747
|| t.getName().startsWith("Memory manager")
48-
|| t.getName().startsWith("File watcher consumer");
48+
|| t.getName().startsWith("File watcher consumer")
49+
|| t.getName().startsWith("sshd-SshClient") /* Started by SshClient (sshd-core), part of SftpFileSystemProvider */
50+
|| t.getName().startsWith("Thread-"); /* Started by AbstractFactoryManager (sshd-core), part of SftpFileSystemProvider */
4951
}
5052
}

‎gradle/wrapper/gradle-wrapper.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
distributionBase=GRADLE_USER_HOME
1313
distributionPath=wrapper/dists
14-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-all.zip
14+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-all.zip
1515
zipStoreBase=GRADLE_USER_HOME
1616
zipStorePath=wrapper/dists
17-
distributionSha256Sum=85719317abd2112f021d4f41f09ec370534ba288432065f4b477b6a3b652910d
17+
distributionSha256Sum=194717442575a6f96e1c1befa2c30e9a4fc90f701d7aee33eb879b79e7ff05c0

0 commit comments

Comments
 (0)
Please sign in to comment.