Skip to content

Commit ba71974

Browse files
Merge branch 'release-1.16' into master
2 parents eadbd5f + c3d2f4f commit ba71974

File tree

7 files changed

+7
-25
lines changed

7 files changed

+7
-25
lines changed

conversation/go/http/README.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,6 @@ The terminal console output should look similar to this, where:
4949

5050
2. Stop and clean up application processes.
5151

52-
<!-- STEP
53-
name: Stop multi-app run
54-
sleep: 5
55-
-->
56-
5752
```bash
5853
dapr stop -f .
5954
```
60-
61-
<!-- END_STEP -->

conversation/go/sdk/README.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,6 @@ The terminal console output should look similar to this, where:
4949

5050
2. Stop and clean up application processes.
5151

52-
<!-- STEP
53-
name: Stop multi-app run
54-
sleep: 5
55-
-->
56-
5752
```bash
5853
dapr stop -f .
59-
```
60-
61-
<!-- END_STEP -->
54+
```

jobs/go/sdk/dapr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ common:
55
apps:
66
- appID: job-service-sdk
77
appDirPath: ./job-service/
8-
appPort: 6400
8+
appPort: 6600
99
daprGRPCPort: 6481
1010
appProtocol: grpc
1111
command: ["go", "run", "."]

jobs/go/sdk/job-scheduler/go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module dapr_job_example
22

3-
go 1.24.4
4-
5-
toolchain go1.24.5
3+
go 1.24.6
64

75
require github.com/dapr/go-sdk v1.13.0-rc.1
86

jobs/go/sdk/job-scheduler/job-scheduler.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ type App struct {
3636
var app App
3737

3838
func main() {
39-
// Waiting 15 seconds for the job-service to start
40-
time.Sleep(15 * time.Second)
39+
// Waiting 30 seconds for the job-service to start
40+
time.Sleep(30 * time.Second)
4141

4242
droidJobs := []DroidJob{
4343
{Name: "R2-D2", Job: "Oil Change", DueTime: "5s"},

jobs/go/sdk/job-service/go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module dapr_job_example
22

3-
go 1.24.4
4-
5-
toolchain go1.24.5
3+
go 1.24.6
64

75
require (
86
github.com/dapr/go-sdk v1.13.0-rc.1

jobs/go/sdk/job-service/job-service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ func main() {
5555

5656
appPort := os.Getenv("APP_PORT")
5757
if appPort == "" {
58-
appPort = "6400"
58+
appPort = "6600"
5959
}
6060

6161
//Create new Dapr client

0 commit comments

Comments
 (0)