Skip to content

Commit

Permalink
Revert disabled Gradle cache in #32751 (#32771)
Browse files Browse the repository at this point in the history
  • Loading branch information
Abacn authored Oct 15, 2024
1 parent 1b744a7 commit 06692ca
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 10 deletions.
4 changes: 0 additions & 4 deletions sdks/java/expansion-service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,3 @@ task runExpansionService (type: JavaExec) {
classpath = sourceSets.main.runtimeClasspath
args = [project.findProperty("constructionService.port") ?: "8097"]
}

compileJava {
outputs.upToDateWhen { false }
}
4 changes: 0 additions & 4 deletions sdks/java/extensions/sql/expansion-service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,3 @@ task runExpansionService (type: JavaExec) {
classpath = sourceSets.main.runtimeClasspath
args = [project.findProperty("constructionService.port") ?: "8097"]
}

shadowJar {
outputs.upToDateWhen { false }
}
1 change: 0 additions & 1 deletion sdks/java/io/expansion-service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ configurations.runtimeClasspath {

shadowJar {
mergeServiceFiles()
outputs.upToDateWhen { false }
}

description = "Apache Beam :: SDKs :: Java :: IO :: Expansion Service"
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/apache_beam/yaml/yaml_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def affinity(self, other: "Provider"):
(e.g. to encourage fusion).
"""
# TODO(yaml): This is a very rough heuristic. Consider doing better.
# E.g. we could look at the the expected environments themselves.
# E.g. we could look at the expected environments themselves.
# Possibly, we could provide multiple expansions and have the runner itself
# choose the actual implementation based on fusion (and other) criteria.
a = self.underlying_provider()
Expand Down

0 comments on commit 06692ca

Please sign in to comment.