Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: trigger build #4

Merged
merged 1 commit into from
Jan 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion dapr-distributed-calendar/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,13 @@ I have tried to model this system on the Model View Controller Service (MVCS) ar
}
})
```

where the invokeURL is defined as:

```js
const invokeUrl = `http://localhost:${daprPort}/v1.0/invoke/${eventApp}/method`;
```


* On creation of a new event, it publishes a message to a **pubsub** topic which is then picked up by the **Python** subscriber.

*Pubishing to the topic*
Expand All @@ -89,7 +90,9 @@ I have tried to model this system on the Model View Controller Service (MVCS) ar
request( { uri: publishUrl, method: 'POST', json: JSON.stringify(message) } );
}
```

where the publish URL is:

```js
const publishUrl = `http://localhost:${daprPort}/v1.0/publish/${pubsub_name}/${topic}`;
```
Expand Down
Loading