msmith - in flumotion/branches/platform-3: . flumotion/component/consumers/httpstreamer

flumotion-commit at lists.fluendo.com flumotion-commit at lists.fluendo.com
Fri Jun 8 16:50:47 CEST 2007


Author: msmith
Date: Fri Jun  8 16:50:44 2007
New Revision: 5136

Modified:
   flumotion/branches/platform-3/ChangeLog
   flumotion/branches/platform-3/flumotion/component/consumers/httpstreamer/http.py
Log:
        * flumotion/component/consumers/httpstreamer/http.py:
          Don't swallow failures (and log a useless message that we log in
          more detail elsewhere) when authentication fails.



Modified: flumotion/branches/platform-3/ChangeLog
==============================================================================
--- flumotion/branches/platform-3/ChangeLog	(original)
+++ flumotion/branches/platform-3/ChangeLog	Fri Jun  8 16:50:44 2007
@@ -1,5 +1,11 @@
 2007-06-08  Michael Smith <msmith at fluendo.com>
 
+	* flumotion/component/consumers/httpstreamer/http.py:
+	  Don't swallow failures (and log a useless message that we log in
+	  more detail elsewhere) when authentication fails.
+
+2007-06-08  Michael Smith <msmith at fluendo.com>
+
 	* flumotion/component/base/http.py:
 	* flumotion/component/consumers/httpstreamer/http.py:
 	* flumotion/component/consumers/httpstreamer/http.xml:

Modified: flumotion/branches/platform-3/flumotion/component/consumers/httpstreamer/http.py
==============================================================================
--- flumotion/branches/platform-3/flumotion/component/consumers/httpstreamer/http.py	(original)
+++ flumotion/branches/platform-3/flumotion/component/consumers/httpstreamer/http.py	Fri Jun  8 16:50:44 2007
@@ -193,9 +193,7 @@
         """
         @rtype: L{twisted.internet.defer.Deferred} firing a keycard or None.
         """
-        d = self.callRemote('authenticate', bouncerName, keycard)
-        d.addErrback(log.warningFailure)
-        return d
+        return self.callRemote('authenticate', bouncerName, keycard)
 
     def removeKeycardId(self, bouncerName, keycardId):
         """


More information about the flumotion-commit mailing list