You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -178,12 +178,12 @@ the message will be delivered, let's name it _test_:
178
178
179
179
180
180
At that point we're ready to send a message. Our first message will
181
-
just contain a string _Hello World!_, we want to send it to our
181
+
just contain a string _Hello World!_ and we want to send it to our
182
182
_test_ queue.
183
183
184
-
In RabbitMQ a message never can be send directly to the queue, it always
184
+
In RabbitMQ a message can never be send directly to the queue, it always
185
185
needs to go through an _exchange_. But let's not get dragged by the
186
-
details - you can read more about _exchanges_ in [third part of this
186
+
details - you can read more about _exchanges_ in [the third part of this
187
187
tutorial](http://github.com/rabbitmq/rabbitmq-tutorials/blob/master/python/tutorial-three.md). All we need to know now is how to use a default exchange
188
188
identified by an empty string. This exchange is special - it
189
189
allows us to specify exactly to which queue the message should go.
@@ -212,7 +212,7 @@ them on the screen.
212
212
Again, first we need to connect to RabbitMQ server. The code
213
213
responsible for connecting to Rabbit is the same as previously.
214
214
215
-
Next step, just like before, is to make sure that the
215
+
The next step, just like before, is to make sure that the
216
216
queue exists. Creating a queue using `queue_declare` is idempotent - we can
217
217
run the command as many times you like, and only one will be created.
218
218
@@ -223,7 +223,7 @@ You may ask why to declare the queue again - we have already declared it
223
223
in our previous code. We could have avoided that if we were sure
224
224
that the queue already exists. For example if `send.py` program was
225
225
run before. But we're not yet sure which
226
-
program to run as first. In such case it's a good practice to repeat
226
+
program to run first. In such cases it's a good practice to repeat
0 commit comments