Skip to content

Commit 2f2a359

Browse files
authored
Merge branch 'main' into wangbill/update-proto
2 parents 6e9a6e8 + 2ac5d85 commit 2f2a359

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## placeholder
2-
* Add automatic proto file download and commit hash tracking during build ([#201](https://github.com/microsoft/durabletask-java/pull/201))
2+
* Add automatic proto file download and commit hash tracking during build ([#207](https://github.com/microsoft/durabletask-java/pull/207))
33
* Fix infinite loop when use continueasnew after wait external event ([#183](https://github.com/microsoft/durabletask-java/pull/183))
44
* Fix the issue "Deserialize Exception got swallowed when use anyOf with external event." ([#185](https://github.com/microsoft/durabletask-java/pull/185))
55

client/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,17 @@ compileTestJava {
5151

5252
task downloadProtoFiles {
5353
ext.branch = project.hasProperty('protoBranch') ? project.protoBranch : 'main'
54-
54+
5555
doLast {
5656
def protoDir = file("${rootProject.projectDir}/internal/durabletask-protobuf/protos")
5757
protoDir.mkdirs()
58-
58+
5959
// Download the proto file
6060
new URL("https://raw.githubusercontent.com/microsoft/durabletask-protobuf/${ext.branch}/protos/orchestrator_service.proto")
6161
.withInputStream { i ->
6262
new File(protoDir, 'orchestrator_service.proto').withOutputStream { it << i }
6363
}
64-
64+
6565
// Get and save the commit hash
6666
def commitHashFile = new File("${rootProject.projectDir}/internal/durabletask-protobuf/PROTO_SOURCE_COMMIT_HASH")
6767
def commitApiUrl = new URL("https://api.github.com/repos/microsoft/durabletask-protobuf/commits?path=protos/orchestrator_service.proto&sha=${ext.branch}&per_page=1")

0 commit comments

Comments
 (0)