Skip to content
This repository was archived by the owner on Oct 16, 2024. It is now read-only.
Open
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ The `web` process has this configuration `@autowired` by Spring in `BigOperation
@Autowired private Queue rabbitQueue;
```

When web requests are received by the controller, they are coverted to AMPQ messages and sent to RabbitMQ.
When web requests are received by the controller, they are converted to AMPQ messages and sent to RabbitMQ.
The `AmqpTemplate` makes this easy with the following one-liner:

```java
Expand All @@ -78,7 +78,7 @@ The `web` process then immediately returns a confirmation page to the user.

#### Worker Process

Because the `worker` process is running in a sepatate dyno and is outside an application context,
Because the `worker` process is running in a separate dyno and is outside an application context,
the configuration must be manually wired from `RabbitConfiguration` in `BigOperationWorker`:

```java
Expand Down