Skip to content

Commit 5477fa0

Browse files
Adjusted check for akka token to validate that it is not blank. (#10220)
1 parent f94343d commit 5477fa0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ include(
627627
)
628628

629629
// Optional `akka-http-10.6` instrumentation (see BUILDING.md for how to enable it):
630-
if (providers.gradleProperty("akkaRepositoryToken").isPresent) {
630+
if (providers.gradleProperty("akkaRepositoryToken").getOrElse("").isNotBlank()) {
631631
include(
632632
":dd-java-agent:instrumentation:akka:akka-http:akka-http-10.6"
633633
)

0 commit comments

Comments
 (0)