Skip to content

Commit a4d6f69

Browse files
authored
Fix Dapr app IDs.
1 parent aec7516 commit a4d6f69

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tye.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,21 @@ ingress:
2020
services:
2121
- name: store-api
2222
executable: dapr # path to an executable (relative to this file)
23-
args: run --app-id node-service --app-port %PORT% --dapr-http-port 3502 --components-path ./components -- npm run start # arguments to pass to the process
23+
args: run --app-id node-app --app-port %PORT% --dapr-http-port 3502 --components-path ./components -- npm run start # arguments to pass to the process
2424
# replicas: 5 # number of times to launch the application
2525
workingDirectory: ./node-service/
2626
bindings: # optional array of bindings (ports, connection strings)
2727
- protocol: http
2828
- name: order
2929
executable: dapr # path to an executable (relative to this file)
30-
args: run --app-id python-service --app-port %PORT% --dapr-http-port 3500 --components-path . -- python3 app.py # arguments to pass to the process
30+
args: run --app-id python-app --app-port %PORT% --dapr-http-port 3500 --components-path . -- python3 app.py # arguments to pass to the process
3131
# replicas: 5 # number of times to launch the application
3232
workingDirectory: ./python-service/
3333
bindings: # optional array of bindings (ports, connection strings)
3434
- protocol: http
3535
- name: inventory
3636
executable: dapr # path to an executable (relative to this file)
37-
args: run --app-id go-service --app-port %PORT% --dapr-http-port 3501 -- go run . # arguments to pass to the process
37+
args: run --app-id go-app --app-port %PORT% --dapr-http-port 3501 -- go run . # arguments to pass to the process
3838
workingDirectory: ./go-service/
3939
bindings: # optional array of bindings (ports, connection strings)
4040
- protocol: http

0 commit comments

Comments
 (0)