Skip to content

Commit 9f02e1f

Browse files
committed
Hard code gRPC port
Signed-off-by: joshvanl <[email protected]>
1 parent e865ef0 commit 9f02e1f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/apps/scheduler/app.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ func main() {
5555
func register(ctx context.Context) {
5656
log.Printf("Registering jobs, reminders and workflows")
5757

58-
cl, err := client.NewClient()
58+
cl, err := client.NewClientWithAddress("127.0.0.1:3510")
5959
if err != nil {
6060
log.Fatal(err)
6161
}

tests/e2e/testdata/run-template-files/test-scheduler.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apps:
33
- appID: test-scheduler
44
appDirPath: ../../../apps/scheduler/
55
appPort: 9084
6-
daprHTTPPort: 3510
6+
daprGRPCPort: 3510
77
command: ["go", "run", "app.go"]
88
appLogDestination: console
99
daprdLogDestination: console

0 commit comments

Comments
 (0)