[CalendarServer-changes] [13102] CalendarServer/branches/users/sagen/move2who-4/txdav/common/ datastore/sql.py

source_changes at macosforge.org source_changes at macosforge.org
Tue Apr 1 14:17:34 PDT 2014


Revision: 13102
          http://trac.calendarserver.org//changeset/13102
Author:   sagen at apple.com
Date:     2014-04-01 14:17:33 -0700 (Tue, 01 Apr 2014)
Log Message:
-----------
Pull in r13101 from trunk -- missing yield

Revision Links:
--------------
    http://trac.calendarserver.org//changeset/13101

Modified Paths:
--------------
    CalendarServer/branches/users/sagen/move2who-4/txdav/common/datastore/sql.py

Modified: CalendarServer/branches/users/sagen/move2who-4/txdav/common/datastore/sql.py
===================================================================
--- CalendarServer/branches/users/sagen/move2who-4/txdav/common/datastore/sql.py	2014-04-01 20:59:52 UTC (rev 13101)
+++ CalendarServer/branches/users/sagen/move2who-4/txdav/common/datastore/sql.py	2014-04-01 21:17:33 UTC (rev 13102)
@@ -4041,7 +4041,7 @@
                         self._txn, homeID=self.ownerHome()._resourceID,
                         resourceID=self._resourceID, name=name)
                 )[0][0]
-        self._maybeNotify()
+        yield self._maybeNotify()
         returnValue(self._syncTokenRevision)
 
 
@@ -4049,6 +4049,7 @@
         """
         Maybe notify changed.  (Overridden in NotificationCollection.)
         """
+        return succeed(None)
 
 
 
@@ -7224,7 +7225,7 @@
         """
         Emit a push notification after C{_changeRevision}.
         """
-        self.notifyChanged()
+        return self.notifyChanged()
 
 
     @inlineCallbacks
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20140401/79c6a09f/attachment-0001.html>


More information about the calendarserver-changes mailing list