Browse Source

Merge branch 'master' of github.com:celery/celery

Ask Solem 8 years ago
parent
commit
38a99d4c25
2 changed files with 1 additions and 8 deletions
  1. 1 1
      celery/contrib/sphinx.py
  2. 0 7
      docs/getting-started/brokers/sqs.rst

+ 1 - 1
celery/contrib/sphinx.py

@@ -48,7 +48,7 @@ class TaskDocumenter(FunctionDocumenter):
         return isinstance(member, BaseTask) and getattr(member, '__wrapped__')
 
     def format_args(self):
-        wrapped = getattr(self.object, '__wrapped__')
+        wrapped = getattr(self.object, '__wrapped__', None)
         if wrapped is not None:
             argspec = getfullargspec(wrapped)
             fmt = formatargspec(*argspec)

+ 0 - 7
docs/getting-started/brokers/sqs.rst

@@ -4,13 +4,6 @@
  Using Amazon SQS
 ==================
 
-.. admonition:: Experimental Status
-
-    The SQS transport is in need of improvements in many areas and there
-    are several open bugs.  Unfortunately we don't have the resources or funds
-    required to improve the situation, so we're looking for contributors
-    and partners willing to help.
-
 .. _broker-sqs-installation:
 
 Installation