[CalendarServer-changes] [2966] CalendarServer/branches/users/cdaboo/implicitauto-2947/twistedcaldav /scheduling/implicit.py

source_changes at macosforge.org source_changes at macosforge.org
Tue Sep 9 19:37:14 PDT 2008


Revision: 2966
          http://trac.macosforge.org/projects/calendarserver/changeset/2966
Author:   cdaboo at apple.com
Date:     2008-09-09 19:37:13 -0700 (Tue, 09 Sep 2008)
Log Message:
-----------
Only process a request to attendees once, not once per attendee per instance.

Modified Paths:
--------------
    CalendarServer/branches/users/cdaboo/implicitauto-2947/twistedcaldav/scheduling/implicit.py

Modified: CalendarServer/branches/users/cdaboo/implicitauto-2947/twistedcaldav/scheduling/implicit.py
===================================================================
--- CalendarServer/branches/users/cdaboo/implicitauto-2947/twistedcaldav/scheduling/implicit.py	2008-09-10 02:36:37 UTC (rev 2965)
+++ CalendarServer/branches/users/cdaboo/implicitauto-2947/twistedcaldav/scheduling/implicit.py	2008-09-10 02:37:13 UTC (rev 2966)
@@ -334,7 +334,7 @@
         # being requested, but for now we will do one scheduling message per attendee.
 
         # Do one per attendee
-        for attendee, _ignore in self.attendeesByInstance:
+        for attendee in self.attendees:
 
             # Don't send message back to the ORGANIZER
             if attendee in self.organizerPrincipal.calendarUserAddresses():
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20080909/5572c1fc/attachment-0001.html 


More information about the calendarserver-changes mailing list