Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/spring-boot-4-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
springboot-version: [ '4.0.0-M1', '4.0.0-M2', '4.0.0-M3' ]
springboot-version: [ '4.0.0' ]

name: Spring Boot ${{ matrix.springboot-version }}
env:
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ retrofit = "2.9.0"
slf4j = "1.7.30"
springboot2 = "2.7.18"
springboot3 = "3.5.0"
springboot4 = "4.0.0-RC2"
springboot4 = "4.0.0"
# Android
targetSdk = "34"
compileSdk = "34"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ class SentrySpanRestClientCustomizerTest {
.disableAutomaticRetries() // Required to not make another request automatically
.build()
val requestFactory = HttpComponentsClientHttpRequestFactory(httpClient)
requestFactory.setConnectTimeout(Duration.ofSeconds(2))
requestFactory.setConnectionRequestTimeout(Duration.ofSeconds(2))
it.requestFactory(requestFactory)
}
Expand Down
Loading