Explorar o código

Fixed docs in two rst files

Tomasz Święcicki %!s(int64=12) %!d(string=hai) anos
pai
achega
bc6e140376

+ 1 - 1
docs/getting-started/first-steps-with-celery.rst

@@ -259,7 +259,7 @@ In case the task raised an exception, :meth:`~@AsyncResult.get` will
 re-raise the exception, but you can override this by specifying
 the ``propagate`` argument::
 
-    >>> result.get(propagate=True)
+    >>> result.get(propagate=False)
 
 
 If the task raised an exception you can also gain access to the

+ 2 - 2
docs/getting-started/next-steps.rst

@@ -175,7 +175,7 @@ or stop it:
 
 .. code-block:: bash
 
-    $ celery multi stop -w1 -A proj -l info
+    $ celery multi stop w1 -A proj -l info
 
 The ``stop`` command is asynchronous so it will not wait for the
 worker to shutdown.  You will probably want to use the ``stopwait`` command
@@ -183,7 +183,7 @@ instead which will ensure all currently executing tasks is completed:
 
 .. code-block:: bash
 
-    $ celery multi stopwait -w1 -A proj -l info
+    $ celery multi stopwait w1 -A proj -l info
 
 .. note::